Example #1
0
 public static function load($array)
 {
     $registry = new self();
     $registry->_tree = $array;
     $registry->cd('/');
     return $registry;
 }
Example #2
0
	public static function execute($thing) {
		$fn = new self($thing);
		$fn->cd();
		
		return \AIP\lib\hlprs\NotReturnable::i();
	}