19 lines
304 B
PHP
19 lines
304 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Robo\Task\Base;
|
||
|
|
|
||
|
|
trait Shortcuts
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Executes shell command
|
||
|
|
*
|
||
|
|
* @param string|\Robo\Contract\CommandInterface $command
|
||
|
|
*
|
||
|
|
* @return \Robo\Result
|
||
|
|
*/
|
||
|
|
protected function _exec($command)
|
||
|
|
{
|
||
|
|
return $this->taskExec($command)->run();
|
||
|
|
}
|
||
|
|
}
|