1 | <?php |
||
25 | class URICollection extends ArrayCollection |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * Create a new URICollection from a Symfony Finder instance. |
||
30 | * |
||
31 | * @since 0.1.3 |
||
32 | * |
||
33 | * @param Finder $finder The Finder instance to create the URI collection from. |
||
34 | * |
||
35 | * @return static New URICollection instance. |
||
36 | */ |
||
37 | public static function fromFinder(Finder $finder) |
||
43 | } |
||
44 |