| 1 | <?php |
||
| 10 | class FlysystemLoader implements LoaderInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var FilesystemInterface |
||
| 14 | */ |
||
| 15 | protected $filesystem; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var ExtensionGuesserInterface |
||
| 19 | */ |
||
| 20 | protected $extensionGuesser; |
||
| 21 | |||
| 22 | public function __construct( |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function find($path) |
||
| 47 | } |
||
| 48 |