1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26:
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-12-11
*/
namespace Net\Bazzline\Component\Command;
/**
* Class Command
* @package Net\Bazzline\Component\Command
*/
class Command extends AbstractCommand
{
/**
* @param string $command
* @param boolean $validateReturnValue
* @return array
* @throws RuntimeException
*/
public function __invoke($command, $validateReturnValue = true)
{
return $this->execute($command, $validateReturnValue);
}
}