Completed
Pull Request — master (#28256)
by Philipp
11:54
created
apps/federation/lib/SyncFederationAddressBooks.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -24,10 +24,6 @@
 block discarded – undo
24 24
 
25 25
 use OCA\DAV\CardDAV\SyncService;
26 26
 use OCP\AppFramework\Http;
27
-use Symfony\Component\Console\Command\Command;
28
-use Symfony\Component\Console\Helper\ProgressBar;
29
-use Symfony\Component\Console\Input\InputInterface;
30
-use Symfony\Component\Console\Output\OutputInterface;
31 27
 
32 28
 class SyncFederationAddressBooks {
33 29
 
Please login to merge, or discard this patch.
apps/files_external/lib/Command/Backends.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -27,13 +27,8 @@
 block discarded – undo
27 27
 use OCP\Files\External\DefinitionParameter;
28 28
 use OCP\Files\External\IStoragesBackendService;
29 29
 use Symfony\Component\Console\Command\Command;
30
-use Symfony\Component\Console\Helper\Table;
31
-use Symfony\Component\Console\Helper\TableHelper;
32
-use Symfony\Component\Console\Input\ArrayInput;
33 30
 use Symfony\Component\Console\Input\InputArgument;
34 31
 use Symfony\Component\Console\Input\InputInterface;
35
-use Symfony\Component\Console\Input\InputOption;
36
-use Symfony\Component\Console\Input\Input;
37 32
 use Symfony\Component\Console\Output\OutputInterface;
38 33
 
39 34
 class Backends extends Base {
Please login to merge, or discard this patch.
apps/files_external/lib/Command/Config.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -27,11 +27,8 @@
 block discarded – undo
27 27
 use OCP\Files\External\NotFoundException;
28 28
 use OCP\Files\External\Service\IGlobalStoragesService;
29 29
 use Symfony\Component\Console\Command\Command;
30
-use Symfony\Component\Console\Helper\Table;
31
-use Symfony\Component\Console\Helper\TableHelper;
32 30
 use Symfony\Component\Console\Input\InputArgument;
33 31
 use Symfony\Component\Console\Input\InputInterface;
34
-use Symfony\Component\Console\Input\InputOption;
35 32
 use Symfony\Component\Console\Output\OutputInterface;
36 33
 
37 34
 class Config extends Base {
Please login to merge, or discard this patch.
apps/files_external/lib/Command/Import.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 
25 25
 use OC\Core\Command\Base;
26 26
 use OC\User\NoUserException;
27
-use OCP\Files\External\IStorageConfig;
28 27
 use OCP\Files\External\IStoragesBackendService;
29 28
 use OCP\Files\External\Service\IGlobalStoragesService;
30 29
 use OCP\Files\External\Service\IUserStoragesService;
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Storage/AmazonS3.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -230,6 +230,9 @@
 block discarded – undo
230 230
 		return false;
231 231
 	}
232 232
 
233
+	/**
234
+	 * @param string $path
235
+	 */
233 236
 	private function batchDelete ($path = null) {
234 237
 		$params = [
235 238
 			'Bucket' => $this->bucket
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Storage/SFTP.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
  */
33 33
 namespace OCA\Files_External\Lib\Storage;
34 34
 use Icewind\Streams\IteratorDirectory;
35
-
36 35
 use Icewind\Streams\RetryWrapper;
37 36
 use phpseclib\Net\SFTP\Stream;
38 37
 
Please login to merge, or discard this patch.
apps/files_sharing/lib/External/Manager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -325,6 +325,9 @@
 block discarded – undo
325 325
 		return $result;
326 326
 	}
327 327
 
328
+	/**
329
+	 * @param string $mountPoint
330
+	 */
328 331
 	public function removeShare($mountPoint) {
329 332
 
330 333
 		$mountPointObj = $this->mountManager->find($mountPoint);
Please login to merge, or discard this patch.
apps/files_trashbin/lib/BackgroundJob/ExpireTrash.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 
24 24
 namespace OCA\Files_Trashbin\BackgroundJob;
25 25
 
26
-use OCP\IConfig;
27 26
 use OCP\IUser;
28 27
 use OCP\IUserManager;
29 28
 use OCA\Files_Trashbin\AppInfo\Application;
Please login to merge, or discard this patch.
apps/files_trashbin/lib/Storage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 	 * check if it is a file located in data/user/files only files in the
110 110
 	 * 'files' directory should be moved to the trash
111 111
 	 *
112
-	 * @param $path
112
+	 * @param string $path
113 113
 	 * @return bool
114 114
 	 */
115 115
 	protected function shouldMoveToTrash($path){
Please login to merge, or discard this patch.