13 lines
230 B
PHP
13 lines
230 B
PHP
<?php
|
|
namespace Robo\Common;
|
|
|
|
/**
|
|
* This task specifies exactly one shell command.
|
|
* It can take additional arguments and options as config parameters.
|
|
*/
|
|
trait ExecOneCommand
|
|
{
|
|
use ExecCommand;
|
|
use CommandArguments;
|
|
}
|