Skip to content
Snippets Groups Projects
Unverified Commit 5a8c7854 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #19819 from nextcloud/fix/mismatching-docblock-param-type

Fix mismatching doc block parameter types
parents 0b6dbe64 5fc4c91a
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ abstract class BaseResponse extends Response { ...@@ -48,7 +48,7 @@ abstract class BaseResponse extends Response {
/** /**
* BaseResponse constructor. * BaseResponse constructor.
* *
* @param DataResponse|null $dataResponse * @param DataResponse $dataResponse
* @param string $format * @param string $format
* @param string|null $statusMessage * @param string|null $statusMessage
* @param int|null $itemsCount * @param int|null $itemsCount
......
...@@ -181,7 +181,7 @@ class Manager { ...@@ -181,7 +181,7 @@ class Manager {
/** /**
* @param array $states * @param array $states
* @param IProvider $providers * @param IProvider[] $providers
*/ */
private function isProviderMissing(array $states, array $providers): bool { private function isProviderMissing(array $states, array $providers): bool {
$indexed = []; $indexed = [];
......
...@@ -62,7 +62,7 @@ class Migrator { ...@@ -62,7 +62,7 @@ class Migrator {
private $noEmit = false; private $noEmit = false;
/** /**
* @param \Doctrine\DBAL\Connection|Connection $connection * @param \Doctrine\DBAL\Connection $connection
* @param ISecureRandom $random * @param ISecureRandom $random
* @param IConfig $config * @param IConfig $config
* @param EventDispatcherInterface $dispatcher * @param EventDispatcherInterface $dispatcher
......
...@@ -51,7 +51,7 @@ class MySQLMigrator extends Migrator { ...@@ -51,7 +51,7 @@ class MySQLMigrator extends Migrator {
return $schemaDiff; return $schemaDiff;
} }
/** /**
* Speed up migration test by disabling autocommit and unique indexes check * Speed up migration test by disabling autocommit and unique indexes check
* *
......
...@@ -52,10 +52,11 @@ class GeneratorHelper { ...@@ -52,10 +52,11 @@ class GeneratorHelper {
} }
/** /**
* @param IProvider $provider * @param IProviderV2 $provider
* @param File $file * @param File $file
* @param int $maxWidth * @param int $maxWidth
* @param int $maxHeight * @param int $maxHeight
*
* @return bool|IImage * @return bool|IImage
*/ */
public function getThumbnail(IProviderV2 $provider, File $file, $maxWidth, $maxHeight) { public function getThumbnail(IProviderV2 $provider, File $file, $maxWidth, $maxHeight) {
......
...@@ -181,7 +181,7 @@ interface IIndex { ...@@ -181,7 +181,7 @@ interface IIndex {
* @since 15.0.0 * @since 15.0.0
* *
* @param string $option * @param string $option
* @param string|int $value * @param string $value
* *
* @return IIndex * @return IIndex
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment