Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function __construct() |
||
24 | { |
||
25 | $this->inPorts()->add('source', ['datatype' => 'string']); |
||
26 | $this->outPorts() |
||
27 | ->add('out', ['datatype' => 'string']) |
||
28 | ->add('error', []); // use defaults, datatype = all |
||
29 | |||
30 | $this->inPorts()->source->on('data', [$this, 'readFile']); |
||
31 | } |
||
32 | |||
50 |