-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.php
35 lines (27 loc) · 951 Bytes
/
example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/*
* This file is part of the andreas-weber/php-runner library.
*
* (c) Andreas Weber <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
use AndreasWeber\Runner\Example\Task1;
use AndreasWeber\Runner\Example\Task2;
use AndreasWeber\Runner\Example\TaskExitCode;
use AndreasWeber\Runner\Payload\ArrayPayload;
use AndreasWeber\Runner\Runner;
use AndreasWeber\Runner\Task\Collection;
require_once __DIR__ . '/../resources/bootstrap.php';
$collection = new Collection();
$collection->addTask(new Task1());
$collection->addTask(new Task2());
// trigger an exception, when exit code is not equal zero or null
$taskExitCode = new TaskExitCode();
$taskExitCode->setFailOnError(true);
$collection->addTask($taskExitCode);
$payload = new ArrayPayload();
$runner = new Runner($collection, $logger);
// we're awaiting an exception
$runner->run($payload);