| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function __construct(array $grams, array $states, int $countNonLeafStates, string $output) |
||
| 51 | { |
||
| 52 | $this->grams = $grams; |
||
| 53 | $this->states = $states; |
||
| 54 | $this->countStates = \count($states); |
||
| 55 | $this->output = $output; |
||
| 56 | $this->countNonLeafStates = $countNonLeafStates; |
||
| 57 | } |
||
| 58 | } |
||
| 59 |