More updates to stop using dev or alpha or beta versions.
[yaffs-website] / vendor / consolidation / robo / src / Task / Base / loadShortcuts.php
1 <?php
2 namespace Robo\Task\Base;
3
4 trait loadShortcuts
5 {
6     /**
7      * Executes shell command
8      *
9      * @param string|\Robo\Contract\CommandInterface $command
10      *
11      * @return \Robo\Result
12      */
13     protected function _exec($command)
14     {
15         return $this->taskExec($command)->run();
16     }
17 }