| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 29 | final public function __construct(Types $types, LeafType $leafType) |
|
| 20 | { |
||
| 21 | 29 | $config = $this->getConfiguration($types, $leafType); |
|
| 22 | |||
| 23 | // Override type name to be predictable |
||
| 24 | 29 | $config['name'] = Utils::getOperatorTypeName(get_class($this), $leafType); |
|
| 25 | |||
| 26 | 29 | parent::__construct($config); |
|
| 27 | 29 | } |
|
| 47 |