Leitgedanken/msd2/phpBB3/vendor/ocramius/proxy-manager/tests/language-feature-scripts/lazy-loading-ghost-allows-inexisting-magic-property-read.phpt
2023-01-23 11:03:31 +01:00

25 lines
471 B
PHP

--TEST--
Verifies that generated lazy loading ghost objects disallow reading non-existing properties via direct read
--FILE--
<?php
require_once __DIR__ . '/init.php';
class Kitchen
{
private $sweets;
public function & __get($name)
{
return $name;
}
}
$factory = new \ProxyManager\Factory\LazyLoadingGhostFactory($configuration);
$proxy = $factory->createProxy('Kitchen', function () {});
echo $proxy->nonExisting;
?>
--EXPECTF--
nonExisting