| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 29 | public function __toString(): string |
||
| 30 | { |
||
| 31 | return implode( |
||
| 32 | DIRECTORY_SEPARATOR, |
||
| 33 | $this->matching(Criteria::create()->orderBy(array('priority' => Criteria::ASC))) |
||
| 34 | ->map(function (PathPart $pathPart) { |
||
| 35 | return $pathPart->getPath(); |
||
| 36 | }) |
||
| 37 | ->toArray() |
||
| 38 | ); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |