for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManager\ProxyGenerator\RemoteObject\MethodGenerator;
use Laminas\Code\Generator\Exception\InvalidArgumentException;
use Laminas\Code\Generator\ParameterGenerator;
use Laminas\Code\Generator\PropertyGenerator;
use ProxyManager\Generator\MagicMethodGenerator;
use ReflectionClass;
use function var_export;
/**
* Magic `__unset` method for remote objects
*/
class MagicUnset extends MagicMethodGenerator
{
* Constructor
*
* @throws InvalidArgumentException
public function __construct(ReflectionClass $originalClass, PropertyGenerator $adapterProperty)
parent::__construct($originalClass, '__unset', [new ParameterGenerator('name')]);
$this->setDocBlock('@param string $name');
$this->setBody(
'$return = $this->' . $adapterProperty->getName() . '->call(' . var_export($originalClass->getName(), true)
. ', \'__unset\', array($name));' . "\n\n"
. 'return $return;'
);
}