?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/inc/classes/



?? Go up: /home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/inc

?? Viewing: raii.php

<?php

namespace Blocksy;

class RaiiPattern {
	private $callback = null;

	public function __construct($callback) {
		$this->callback = $callback;
	}

	public function __destruct() {
		if ($this->callback) {
			call_user_func($this->callback);
		}
	}
}



??

??