for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Isolate\LazyObjects\Proxy;
use Isolate\LazyObjects\Proxy\Method\Replacement;
/**
* @api
*/
class MethodReplacement
{
* @var Method
private $method;
* @var Replacement
private $replacement;
* @param Method $method
public function __construct(Method $method, Replacement $replacement)
$this->method = $method;
$this->replacement = $replacement;
}
* @return Replacement
*
public function getReplacement()
return $this->replacement;
* @return Method
public function getMethod()
return $this->method;