| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function addProduction(int $symbolId, int $tokenId, int $productionIndex): void |
||
| 20 | { |
||
| 21 | if ($this->hasProduction($symbolId, $tokenId)) { |
||
| 22 | throw new Exception("Production for [{$symbolId}:{$tokenId}] is already defined"); |
||
| 23 | } |
||
| 24 | $this->map[$symbolId][$tokenId] = $productionIndex; |
||
| 25 | } |
||
| 61 |