| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 58 | public function getOperation(string $path, string $method): Operation |
||
| 59 | { |
||
| 60 | $key = "$path::$method"; |
||
| 61 | |||
| 62 | if (isset($this->operations[$key])) { |
||
| 63 | return $this->operations[$key]; |
||
| 64 | } |
||
| 65 | |||
| 66 | return $this->operations[$key] = new Operation($this, $path, $method); |
||
| 67 | } |
||
| 68 | |||
| 82 |