for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset;
/**
* Class with one abstract public method
*
* @author Marco Pivetta <[email protected]>
* @license MIT
*/
class ClassWithMixedPropertiesAndAccessorMethods
{
* @var mixed
public $publicProperty = 'publicProperty';
protected $protectedProperty = 'protectedProperty';
private $privateProperty = 'privateProperty';
* @param string $name
* @return bool
public function has($name)
return isset($this->$name);
}
* @return mixed
public function get($name)
return $this->$name;
* @param mixed $value
* @return void
public function set($name, $value)
$this->$name = $value;
public function remove($name)
unset($this->$name);