Files
drupal11-ddev/vendor/consolidation/robo/src/Task/Base/Shortcuts.php
2025-10-08 11:39:17 -04:00

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();
}
}