| Conditions | 3 |
| Paths | 4 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 5 | ||
| Bugs | 4 | Features | 0 |
| 1 | <?php |
||
| 29 | public function __construct($serviceCallable, \PEIP\INF\Channel\Channel $inputChannel = null, \PEIP\INF\Channel\Channel $outputChannel = null) |
||
| 30 | { |
||
| 31 | $this->serviceCallable = $serviceCallable; |
||
| 32 | if (is_object($inputChannel)) { |
||
| 33 | $this->setInputChannel($inputChannel); |
||
| 34 | } |
||
| 35 | if (is_object($outputChannel)) { |
||
| 36 | $this->setOutputChannel($outputChannel); |
||
| 37 | } |
||
| 38 | } |
||
| 39 | } |
||
| 40 |