| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 7 | public function __construct(Graph $graph, object $object, Transition $transition, State $fromState, State $toState) |
|
| 20 | { |
||
| 21 | 7 | $this->graph = $graph; |
|
| 22 | 7 | $this->object = $object; |
|
| 23 | 7 | $this->transition = $transition; |
|
| 24 | 7 | $this->fromState = $fromState; |
|
| 25 | 7 | $this->toState = $toState; |
|
| 26 | 7 | } |
|
| 53 |