for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Saxulum\LazyService;
class ConstructArgument
{
/**
* @var string
*/
protected $name;
protected $containerKey;
protected $containerMethod;
const CONTAINER_METHOD_GET = 'get';
const CONTAINER_METHOD_GETPARAMETER = 'getParameter';
* @param string $name
* @param string $containerKey
public function __construct($name, $containerKey, $containerMethod)
$this->name = $name;
$this->containerKey = $containerKey;
$this->containerMethod = $containerMethod;
}
* @return string
public function getName()
return $this->name;
public function getContainerKey()
return $this->containerKey;
public function getContainerMethod()
return $this->containerMethod;