Skip to content

Commit d1f8169

Browse files
committed
Updated FlysystemManager phpDoc
1 parent bb6f304 commit d1f8169

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/FlysystemManager.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,26 @@
1717
* FlysystemManager
1818
*
1919
* @method \League\Flysystem\FilesystemInterface addPlugin(\League\Flysystem\PluginInterface $plugin)
20+
* @method void assertAbsent(string $path)
21+
* @method void assertPresent(string $path)
2022
* @method boolean copy(string $path, string $newpath)
2123
* @method boolean createDir(string $dirname, array $config = null)
2224
* @method boolean delete(string $path)
2325
* @method boolean deleteDir(string $dirname)
2426
* @method \League\Flysystem\Handler get(string $path, \League\Flysystem\Handler $handler = null)
27+
* @method \League\Flysystem\AdapterInterface getAdapter()
28+
* @method \League\Flysystem\Config getConfig()
2529
* @method array|false getMetadata(string $path)
2630
* @method string|false getMimetype(string $path)
2731
* @method integer|false getSize(string $path)
2832
* @method integer|false getTimestamp(string $path)
2933
* @method string|false getVisibility(string $path)
34+
* @method array getWithMetadata(string $path, array $metadata)
3035
* @method boolean has(string $path)
3136
* @method array listContents(string $directory = '', boolean $recursive = false)
37+
* @method array listFiles(string $path = '', boolean $recursive = false)
38+
* @method array listPaths(string $path = '', boolean $recursive = false)
39+
* @method array listWith(array $keys = [], $directory = '', $recursive = false)
3240
* @method boolean put(string $path, string $contents, array $config = [])
3341
* @method boolean putStream(string $path, resource $resource, array $config = [])
3442
* @method string|false read(string $path)

0 commit comments

Comments
 (0)