@@ -655,7 +655,7 @@ discard block |
||
| 655 | 655 | * if the size limit for the trash bin is reached, we delete the oldest |
| 656 | 656 | * files in the trash bin until we meet the limit again |
| 657 | 657 | * |
| 658 | - * @param array $files |
|
| 658 | + * @param \OCP\Files\FileInfo[] $files |
|
| 659 | 659 | * @param string $user |
| 660 | 660 | * @param int $availableSpace available disc space |
| 661 | 661 | * @return int size of deleted files |
@@ -683,7 +683,7 @@ discard block |
||
| 683 | 683 | /** |
| 684 | 684 | * delete files older then max storage time |
| 685 | 685 | * |
| 686 | - * @param array $files list of files sorted by mtime |
|
| 686 | + * @param \OCP\Files\FileInfo[] $files list of files sorted by mtime |
|
| 687 | 687 | * @param string $user |
| 688 | 688 | * @return integer[] size of deleted files and number of deleted files |
| 689 | 689 | */ |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | * Set a value in the cache if it's not already stored |
| 121 | 121 | * |
| 122 | 122 | * @param string $key |
| 123 | - * @param mixed $value |
|
| 123 | + * @param integer $value |
|
| 124 | 124 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
| 125 | 125 | * @return bool |
| 126 | 126 | */ |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | - * @param \Doctrine\DBAL\Connection $connection |
|
| 56 | + * @param \OCP\IDBConnection $connection |
|
| 57 | 57 | * @return string[] |
| 58 | 58 | */ |
| 59 | 59 | private function getAllMyIsamTables($connection) { |
@@ -153,7 +153,6 @@ discard block |
||
| 153 | 153 | /** |
| 154 | 154 | * saves database schema to xml file |
| 155 | 155 | * @param string $file name of file |
| 156 | - * @param int $mode |
|
| 157 | 156 | * @return bool |
| 158 | 157 | * |
| 159 | 158 | * TODO: write more documentation |
@@ -197,7 +196,7 @@ discard block |
||
| 197 | 196 | * simulate the database schema update |
| 198 | 197 | * @param string $file file to read structure from |
| 199 | 198 | * @throws Exception |
| 200 | - * @return string|boolean |
|
| 199 | + * @return boolean |
|
| 201 | 200 | */ |
| 202 | 201 | public static function simulateUpdateDbFromStructure($file) { |
| 203 | 202 | $schemaManager = self::getMDB2SchemaManager(); |
@@ -161,7 +161,7 @@ |
||
| 161 | 161 | /** |
| 162 | 162 | * Set the BCC recipients of this message. |
| 163 | 163 | * |
| 164 | - * @param array $recipients Example: array('[email protected]', '[email protected]' => 'A name') |
|
| 164 | + * @param string[] $recipients Example: array('[email protected]', '[email protected]' => 'A name') |
|
| 165 | 165 | * @return $this |
| 166 | 166 | */ |
| 167 | 167 | public function setBcc(array $recipients) { |
@@ -23,7 +23,6 @@ |
||
| 23 | 23 | namespace OCA\DAV; |
| 24 | 24 | |
| 25 | 25 | use OCA\DAV\CalDAV\Schedule\IMipPlugin; |
| 26 | -use OCA\DAV\Connector\FedAuth; |
|
| 27 | 26 | use OCA\DAV\Connector\Sabre\Auth; |
| 28 | 27 | use OCA\DAV\Connector\Sabre\BlockLegacyClientPlugin; |
| 29 | 28 | use OCA\DAV\Files\CustomPropertiesBackend; |
@@ -31,13 +31,10 @@ |
||
| 31 | 31 | use OCP\IUserManager; |
| 32 | 32 | use OCP\IUserSession; |
| 33 | 33 | use Symfony\Component\Console\Command\Command; |
| 34 | -use Symfony\Component\Console\Helper\Table; |
|
| 35 | -use Symfony\Component\Console\Helper\TableHelper; |
|
| 36 | 34 | use Symfony\Component\Console\Input\ArrayInput; |
| 37 | 35 | use Symfony\Component\Console\Input\InputArgument; |
| 38 | 36 | use Symfony\Component\Console\Input\InputInterface; |
| 39 | 37 | use Symfony\Component\Console\Input\InputOption; |
| 40 | -use Symfony\Component\Console\Input\Input; |
|
| 41 | 38 | use Symfony\Component\Console\Output\OutputInterface; |
| 42 | 39 | |
| 43 | 40 | class Import extends Base { |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | * Wrapper around file_get_contents($filename, $data) |
| 33 | 33 | * |
| 34 | 34 | * @param string $filename |
| 35 | - * @return string|false |
|
| 35 | + * @return string |
|
| 36 | 36 | */ |
| 37 | 37 | public function file_get_contents($filename) { |
| 38 | 38 | return file_get_contents($filename); |
@@ -52,8 +52,8 @@ discard block |
||
| 52 | 52 | * Wrapper around file_put_contents($filename, $data) |
| 53 | 53 | * |
| 54 | 54 | * @param string $filename |
| 55 | - * @param $data |
|
| 56 | - * @return int|false |
|
| 55 | + * @param string $data |
|
| 56 | + * @return integer |
|
| 57 | 57 | */ |
| 58 | 58 | public function file_put_contents($filename, $data) { |
| 59 | 59 | return file_put_contents($filename, $data); |
@@ -99,6 +99,7 @@ discard block |
||
| 99 | 99 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 100 | 100 | * @param \OCP\Lock\ILockingProvider $provider |
| 101 | 101 | * @throws \OCP\Lock\LockedException |
| 102 | + * @return void |
|
| 102 | 103 | */ |
| 103 | 104 | public function acquireLock($path, $type, ILockingProvider $provider); |
| 104 | 105 | |
@@ -106,6 +107,7 @@ discard block |
||
| 106 | 107 | * @param string $path The path of the file to release the lock for |
| 107 | 108 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 108 | 109 | * @param \OCP\Lock\ILockingProvider $provider |
| 110 | + * @return void |
|
| 109 | 111 | */ |
| 110 | 112 | public function releaseLock($path, $type, ILockingProvider $provider); |
| 111 | 113 | |
@@ -114,6 +116,7 @@ discard block |
||
| 114 | 116 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 115 | 117 | * @param \OCP\Lock\ILockingProvider $provider |
| 116 | 118 | * @throws \OCP\Lock\LockedException |
| 119 | + * @return void |
|
| 117 | 120 | */ |
| 118 | 121 | public function changeLock($path, $type, ILockingProvider $provider); |
| 119 | 122 | } |