| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function getMapGraphicPath(): string |
||
| 30 | { |
||
| 31 | $layer = $this->map->getLayer(); |
||
| 32 | |||
| 33 | if ($layer->isEncoded()) { |
||
| 34 | return $this->encodedMap->getEncodedMapPath( |
||
| 35 | $this->map->getFieldId(), |
||
| 36 | $layer |
||
| 37 | ); |
||
| 38 | } |
||
| 39 | return sprintf('%d/%d.png', $layer->getId(), $this->map->getFieldId()); |
||
| 40 | } |
||
| 42 |