1 | <?php |
||
7 | trait FilesystemDriverTrait |
||
8 | { |
||
9 | /** |
||
10 | * @var DriverInterface |
||
11 | */ |
||
12 | protected $driver; |
||
13 | |||
14 | /** |
||
15 | * @see DriverInterface::stat |
||
16 | */ |
||
17 | public function stat($path) |
||
21 | |||
22 | /** |
||
23 | * @see DriverInterface::chmod |
||
24 | */ |
||
25 | public function chmod($path, $mode) |
||
29 | |||
30 | /** |
||
31 | * @see DriverInterface::chown |
||
32 | */ |
||
33 | public function chown($path, $uid = -1, $gid = -1) |
||
37 | } |
||
38 |