for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset;
/**
* Test object to be hydrated
*
* @author Marco Pivetta <[email protected]>
* @license MIT
*/
class HydratedObject
{
* @var mixed
public $foo = 1;
protected $bar = 2;
private $baz = 3;
* Method to be disabled
public function doFoo()
}
* @param string $name
* @return mixed
public function __get($name)
return $this->$name;