
| Current Path : /var/www/html_old/12park.002/vendor/consolidation/robo/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html_old/12park.002/vendor/consolidation/robo/src/Tasks.php |
<?php
namespace Robo;
use Robo\Common\IO;
use Robo\Contract\IOAwareInterface;
use Robo\Contract\BuilderAwareInterface;
use League\Container\ContainerAwareInterface;
use League\Container\ContainerAwareTrait;
class Tasks implements BuilderAwareInterface, IOAwareInterface, ContainerAwareInterface
{
use ContainerAwareTrait;
use LoadAllTasks; // uses TaskAccessor, which uses BuilderAwareTrait
use IO;
/**
* @param bool $stopOnFail
*/
protected function stopOnFail($stopOnFail = true)
{
Result::$stopOnFail = $stopOnFail;
}
}