1 | <?php |
||
2 | namespace Nip\Filesystem; |
||
3 | |||
4 | use League\Flysystem\FilesystemInterface; |
||
5 | |||
6 | /** |
||
7 | * Class File |
||
8 | * @package Nip\Filesystem |
||
9 | */ |
||
10 | class File |
||
11 | { |
||
12 | use File\HasFilesystem; |
||
13 | use File\HasInformation; |
||
14 | use File\HasOperations; |
||
15 | use File\HasPath; |
||
16 | |||
17 | /** |
||
18 | * @inheritdoc |
||
19 | */ |
||
20 | public function __construct(FilesystemInterface $filesystem = null, $path = null) |
||
21 | { |
||
22 | $this->parseNameFromPath($path); |
||
23 | $this->path = $path; |
||
24 | $this->setFilesystem($filesystem); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
25 | } |
||
26 | } |
||
27 |