| 1 | <?php |
||
| 22 | class Utility |
||
| 23 | { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Signal instance |
||
| 27 | * @var Signal |
||
| 28 | */ |
||
| 29 | private $signal = null; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Processed paths |
||
| 33 | * @var string[] |
||
| 34 | */ |
||
| 35 | private $paths = []; |
||
| 36 | |||
| 37 | public function __construct(Signal $signal) |
||
| 45 | |||
| 46 | public function generate() |
||
| 57 | |||
| 58 | public function getPaths() |
||
| 62 | |||
| 63 | } |
||
| 64 |