| @@ -28,7 +28,6 @@ | ||
| 28 | 28 | use Symfony\Component\Console\Command\Command; | 
| 29 | 29 | use Symfony\Component\Console\Helper\Table; | 
| 30 | 30 | use Symfony\Component\Console\Input\InputInterface; | 
| 31 | -use Symfony\Component\Console\Input\InputOption; | |
| 32 | 31 | use Symfony\Component\Console\Output\OutputInterface; | 
| 33 | 32 | |
| 34 | 33 |  class ListCertificates extends Base { | 
| @@ -131,7 +131,7 @@ | ||
| 131 | 131 | } | 
| 132 | 132 | |
| 133 | 133 | /** | 
| 134 | - * @param $message | |
| 134 | + * @param string $message | |
| 135 | 135 | * @param array $additional | 
| 136 | 136 | * @return array | 
| 137 | 137 | */ | 
| @@ -70,7 +70,7 @@ discard block | ||
| 70 | 70 | * | 
| 71 | 71 | * @NoAdminRequired | 
| 72 | 72 | * @NoSubadminRequired | 
| 73 | - * @return array | |
| 73 | + * @return DataResponse | |
| 74 | 74 | */ | 
| 75 | 75 |  	public function addPersonalRootCertificate() { | 
| 76 | 76 | return $this->addCertificate($this->userCertificateManager); | 
| @@ -80,7 +80,7 @@ discard block | ||
| 80 | 80 | * Add a new root certificate to a trust store | 
| 81 | 81 | * | 
| 82 | 82 | * @param ICertificateManager $certificateManager | 
| 83 | - * @return array | |
| 83 | + * @return DataResponse | |
| 84 | 84 | */ | 
| 85 | 85 |  	private function addCertificate(ICertificateManager $certificateManager) { | 
| 86 | 86 | $headers = []; | 
| @@ -158,7 +158,7 @@ discard block | ||
| 158 | 158 | /** | 
| 159 | 159 | * Add a new personal root certificate to the system's trust store | 
| 160 | 160 | * | 
| 161 | - * @return array | |
| 161 | + * @return DataResponse | |
| 162 | 162 | */ | 
| 163 | 163 |  	public function addSystemRootCertificate() { | 
| 164 | 164 | return $this->addCertificate($this->systemCertificateManager); | 
| @@ -22,7 +22,6 @@ | ||
| 22 | 22 | |
| 23 | 23 | namespace OC\App; | 
| 24 | 24 | |
| 25 | -use OC_Util; | |
| 26 | 25 | use OCP\IConfig; | 
| 27 | 26 | |
| 28 | 27 | /** | 
| @@ -153,7 +153,7 @@ | ||
| 153 | 153 | |
| 154 | 154 | /** | 
| 155 | 155 | * @param mixed $offset | 
| 156 | - * @return mixed | |
| 156 | + * @return string|null | |
| 157 | 157 | */ | 
| 158 | 158 |  	public function offsetGet($offset) { | 
| 159 | 159 | return $this->get($offset); | 
| @@ -202,7 +202,7 @@ | ||
| 202 | 202 | /** | 
| 203 | 203 | * removes an entry from the comments run time cache | 
| 204 | 204 | * | 
| 205 | - * @param mixed $id the comment's id | |
| 205 | + * @param string $id the comment's id | |
| 206 | 206 | */ | 
| 207 | 207 |  	protected function uncache($id) { | 
| 208 | 208 | $id = strval($id); | 
| @@ -90,9 +90,9 @@ | ||
| 90 | 90 | |
| 91 | 91 | /** | 
| 92 | 92 | * @param string $key | 
| 93 | - * @param mixed $value | |
| 93 | + * @param string|null $value | |
| 94 | 94 | * @param int $ttl | 
| 95 | - * @return bool|mixed | |
| 95 | + * @return boolean | |
| 96 | 96 | * @throws \OC\ForbiddenException | 
| 97 | 97 | */ | 
| 98 | 98 |  	public function set($key, $value, $ttl = 0) { | 
| @@ -110,7 +110,7 @@ | ||
| 110 | 110 | |
| 111 | 111 | /** | 
| 112 | 112 | * Gets the correct header | 
| 113 | - * @param Http::CONSTANT $status the constant from the Http class | |
| 113 | + * @param integer $status the constant from the Http class | |
| 114 | 114 | * @param \DateTime $lastModified formatted last modified date | 
| 115 | 115 | * @param string $ETag the etag | 
| 116 | 116 | * @return string | 
| @@ -46,7 +46,7 @@ | ||
| 46 | 46 | |
| 47 | 47 | |
| 48 | 48 | /** | 
| 49 | - * @param object $object an object or classname | |
| 49 | + * @param \OCP\AppFramework\Controller $object an object or classname | |
| 50 | 50 | * @param string $method the method which we want to inspect | 
| 51 | 51 | */ | 
| 52 | 52 |  	public function reflect($object, $method){ |