| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function expand($path) |
||
| 24 | { |
||
| 25 | if (0 !== strpos($path, '@')) { |
||
| 26 | return $path; |
||
| 27 | } |
||
| 28 | |||
| 29 | list($bundleName, $relPath) = explode('/', substr($path, 1), 2); |
||
| 30 | |||
| 31 | $bundle = $this->kernel->getBundle($bundleName); |
||
| 32 | |||
| 33 | return sprintf('%s/%s', $bundle->getPath(), $relPath); |
||
| 34 | } |
||
| 35 | } |
||
| 36 |