Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/phpgt/dom/test/phpunit/Helper/
Upload File :
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";
	}
}