for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Magium\TestCase\Configurable;
class GenericInstruction implements InstructionInterface
{
protected $className;
protected $method;
protected $params;
/**
* GenericInstruction constructor.
* @param $className
* @param $method
* @param $params
*/
public function __construct($className, $method, $params = null)
$this->className = $className;
$this->method = $method;
$this->params = $params;
}
* @return mixed
public function getClassName()
return $this->className;
public function getMethod()
return $this->method;
public function getParams()
return $this->params;