diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 11:48:10 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-09 11:48:10 +0200 |
commit | 41b5e5923a44965e435d35d01b5009abb2dd5c97 (patch) | |
tree | 1d832f87ecbaa33c5ad6e09792e5ae5a0f760fe6 /lib/public/Files | |
parent | 813bdc1ce8a45039fa17aac12bd078466a0034d0 (diff) | |
download | nextcloud-server-41b5e5923a44965e435d35d01b5009abb2dd5c97.tar.gz nextcloud-server-41b5e5923a44965e435d35d01b5009abb2dd5c97.zip |
Use exactly one empty line after the namespace declaration
For PSR2
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public/Files')
-rw-r--r-- | lib/public/Files/Cache/ICache.php | 1 | ||||
-rw-r--r-- | lib/public/Files/Folder.php | 1 | ||||
-rw-r--r-- | lib/public/Files/IMimeTypeDetector.php | 1 | ||||
-rw-r--r-- | lib/public/Files/Storage/IStorageFactory.php | 1 | ||||
-rw-r--r-- | lib/public/Files/StorageNotAvailableException.php | 1 |
5 files changed, 4 insertions, 1 deletions
diff --git a/lib/public/Files/Cache/ICache.php b/lib/public/Files/Cache/ICache.php index a4c9bfe3e45..d1388f02b1d 100644 --- a/lib/public/Files/Cache/ICache.php +++ b/lib/public/Files/Cache/ICache.php @@ -21,6 +21,7 @@ */ namespace OCP\Files\Cache; + use OCP\Files\Search\ISearchQuery; /** diff --git a/lib/public/Files/Folder.php b/lib/public/Files/Folder.php index a78a9ca8f78..4c05b0fb490 100644 --- a/lib/public/Files/Folder.php +++ b/lib/public/Files/Folder.php @@ -32,6 +32,7 @@ // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; + use OCP\Files\Search\ISearchQuery; /** diff --git a/lib/public/Files/IMimeTypeDetector.php b/lib/public/Files/IMimeTypeDetector.php index ec80b3480d1..bb75ce742c5 100644 --- a/lib/public/Files/IMimeTypeDetector.php +++ b/lib/public/Files/IMimeTypeDetector.php @@ -26,7 +26,6 @@ namespace OCP\Files; - /** * Interface IMimeTypeDetector * @package OCP\Files diff --git a/lib/public/Files/Storage/IStorageFactory.php b/lib/public/Files/Storage/IStorageFactory.php index e5a94de34f9..e9550fdaa29 100644 --- a/lib/public/Files/Storage/IStorageFactory.php +++ b/lib/public/Files/Storage/IStorageFactory.php @@ -23,6 +23,7 @@ */ namespace OCP\Files\Storage; + use OCP\Files\Mount\IMountPoint; /** diff --git a/lib/public/Files/StorageNotAvailableException.php b/lib/public/Files/StorageNotAvailableException.php index 0b1defaded8..052a6b5ad78 100644 --- a/lib/public/Files/StorageNotAvailableException.php +++ b/lib/public/Files/StorageNotAvailableException.php @@ -36,6 +36,7 @@ // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; + use OC\HintException; /** |