1 | <?php |
||
27 | class NullDriver extends DriverAbstract |
||
28 | { |
||
29 | /** |
||
30 | * {@inheritDoc} |
||
31 | */ |
||
32 | protected function realPath(/*# string */ $path)/*# : string */ |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | protected function realExists(/*# string */ $realPath)/*# : bool */ |
||
44 | |||
45 | /** |
||
46 | * {@inheritDoc} |
||
47 | */ |
||
48 | protected function isRealDir(/*# string */ $realPath)/*# : bool */ |
||
52 | |||
53 | /** |
||
54 | * {@inheritDoc} |
||
55 | */ |
||
56 | protected function readDir( |
||
62 | |||
63 | /** |
||
64 | * {@inheritDoc} |
||
65 | */ |
||
66 | protected function makeDirectory( |
||
71 | |||
72 | /** |
||
73 | * {@inheritDoc} |
||
74 | */ |
||
75 | protected function openReadStream(/*# string */ $realPath) |
||
79 | |||
80 | /** |
||
81 | * {@inheritDoc} |
||
82 | */ |
||
83 | protected function readFile(/*# string */ $realPath) |
||
87 | |||
88 | /** |
||
89 | * {@inheritDoc} |
||
90 | */ |
||
91 | protected function getRealMeta(/*# string */ $realPath)/*# : array */ |
||
95 | |||
96 | /** |
||
97 | * {@inheritDoc} |
||
98 | */ |
||
99 | protected function ensurePath(/*# string */ $realPath)/*# : bool */ |
||
103 | |||
104 | /** |
||
105 | * {@inheritDoc} |
||
106 | */ |
||
107 | protected function writeStream( |
||
113 | |||
114 | /** |
||
115 | * {@inheritDoc} |
||
116 | */ |
||
117 | protected function writeFile( |
||
123 | |||
124 | /** |
||
125 | * {@inheritDoc} |
||
126 | */ |
||
127 | protected function setRealMeta( |
||
133 | |||
134 | /** |
||
135 | * {@inheritDoc} |
||
136 | */ |
||
137 | protected function renameDir( |
||
143 | |||
144 | /** |
||
145 | * {@inheritDoc} |
||
146 | */ |
||
147 | protected function renameFile( |
||
153 | |||
154 | /** |
||
155 | * {@inheritDoc} |
||
156 | */ |
||
157 | protected function copyDir( |
||
163 | |||
164 | /** |
||
165 | * {@inheritDoc} |
||
166 | */ |
||
167 | protected function copyFile( |
||
173 | |||
174 | /** |
||
175 | * {@inheritDoc} |
||
176 | */ |
||
177 | protected function deleteDir(/*# string */ $realPath)/*# : bool */ |
||
181 | |||
182 | /** |
||
183 | * {@inheritDoc} |
||
184 | */ |
||
185 | protected function deleteFile(/*# string */ $realPath)/*# : bool */ |
||
189 | } |
||
190 |