| Current Path : /home/rtorresani/www/vendor/phpgt/dom/test/phpunit/Helper/ |
| Current File : //home/rtorresani/www/vendor/phpgt/dom/test/phpunit/Helper/ExampleLiveProperty.php |
<?php
namespace Gt\Dom\Test\Helper;
use Gt\Dom\LiveProperty;
class ExampleLiveProperty {
use LiveProperty;
public function __get($name) {
if($name === "overload") {
return "from __get overload";
}
return $this->__get_live($name);
}
private function prop_get_example() {
return "from prop_example";
}
}