for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PEIP\Command;
/*
* This file is part of the PEIP package.
* (c) 2009-2016 Timo Michna <timomichna/yahoo.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Command.
* @author Timo Michna <timomichna/yahoo.de>
* @extends \PEIP\ABS\Command\Command
* @implements \PEIP\INF\Command\Command, \PEIP\INF\Data\ParameterHolder
class Command extends \PEIP\ABS\Command\Command implements \PEIP\INF\Command\Command
{
* @param $callable
* @param $params
* @return
public function __construct($callable, array $params = [])
$this->callable = $callable;
$this->setParameters($params);
}