@@ -59,7 +59,7 @@ |
||
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * @param RequestInterface $request |
| 62 | - * @return ResponseInterface |
|
| 62 | + * @return null|Response |
|
| 63 | 63 | * @throws \Commercetools\Core\Error\ApiException |
| 64 | 64 | * @throws \Commercetools\Core\Error\BadGatewayException |
| 65 | 65 | * @throws \Commercetools\Core\Error\ConcurrentModificationException |
@@ -38,8 +38,6 @@ |
||
| 38 | 38 | protected $newPassword; |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | - * @param string $id |
|
| 42 | - * @param int $version |
|
| 43 | 41 | * @param string $tokenValue |
| 44 | 42 | * @param string $newPassword |
| 45 | 43 | * @param Context $context |
@@ -29,7 +29,6 @@ |
||
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | - * @param string $id |
|
| 33 | 32 | * @param int $version |
| 34 | 33 | * @param Context $context |
| 35 | 34 | * @return static |
@@ -43,7 +43,6 @@ |
||
| 43 | 43 | protected $newPassword; |
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | - * @param string $id |
|
| 47 | 46 | * @param int $version |
| 48 | 47 | * @param string $currentPassword |
| 49 | 48 | * @param string $newPassword |
@@ -104,6 +104,9 @@ |
||
| 104 | 104 | return (!in_array($statusCode, [200, 201])); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | + /** |
|
| 108 | + * @param string $fieldName |
|
| 109 | + */ |
|
| 107 | 110 | protected function getResponseField($fieldName, $default = '') |
| 108 | 111 | { |
| 109 | 112 | $result = $this->toArray(); |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * @param MessageFormatter $formatter Formatter used to create message strings. |
| 58 | 58 | * @param string $logLevel Level at which to log requests. |
| 59 | 59 | * |
| 60 | - * @return callable Returns a function that accepts the next handler. |
|
| 60 | + * @return \Closure Returns a function that accepts the next handler. |
|
| 61 | 61 | */ |
| 62 | 62 | private static function log(LoggerInterface $logger, MessageFormatter $formatter, $logLevel = LogLevel::INFO) |
| 63 | 63 | { |
@@ -90,6 +90,9 @@ discard block |
||
| 90 | 90 | }; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | + /** |
|
| 94 | + * @param \Closure $handler |
|
| 95 | + */ |
|
| 93 | 96 | public function addHandler($handler) |
| 94 | 97 | { |
| 95 | 98 | $this->client->getConfig('handler')->push($handler); |
@@ -11,11 +11,9 @@ |
||
| 11 | 11 | use GuzzleHttp\MessageFormatter; |
| 12 | 12 | use GuzzleHttp\Middleware; |
| 13 | 13 | use GuzzleHttp\Pool; |
| 14 | -use GuzzleHttp\Promise\PromiseInterface; |
|
| 15 | 14 | use Psr\Http\Message\RequestInterface; |
| 16 | 15 | use Psr\Http\Message\ResponseInterface; |
| 17 | 16 | use Psr\Log\LoggerInterface; |
| 18 | -use Commercetools\Core\Error\Message; |
|
| 19 | 17 | use Commercetools\Core\Error\ApiException; |
| 20 | 18 | use Psr\Log\LogLevel; |
| 21 | 19 | |
@@ -8,6 +8,9 @@ |
||
| 8 | 8 | |
| 9 | 9 | trait LocaleTrait |
| 10 | 10 | { |
| 11 | + /** |
|
| 12 | + * @param string $locale |
|
| 13 | + */ |
|
| 11 | 14 | public function setLocale($locale) |
| 12 | 15 | { |
| 13 | 16 | $locale = \Locale::canonicalize($locale); |
@@ -8,7 +8,6 @@ |
||
| 8 | 8 | use Commercetools\Core\Model\Common\JsonObject; |
| 9 | 9 | use Commercetools\Core\Model\Common\Resource; |
| 10 | 10 | use Commercetools\Core\Model\MapperInterface; |
| 11 | -use Commercetools\Core\Request\AbstractApiRequest; |
|
| 12 | 11 | use Commercetools\Core\Response\ApiResponseInterface; |
| 13 | 12 | use DateTime; |
| 14 | 13 | |
@@ -37,6 +37,9 @@ discard block |
||
| 37 | 37 | $this->reflectConstructorArgs(); |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | + /** |
|
| 41 | + * @param string $type |
|
| 42 | + */ |
|
| 40 | 43 | public function addMagicGetSetMethod( |
| 41 | 44 | $type, |
| 42 | 45 | $fieldName, |
@@ -67,6 +70,10 @@ discard block |
||
| 67 | 70 | $this->magicGetSetMethods[$name] = $magicMethod; |
| 68 | 71 | } |
| 69 | 72 | |
| 73 | + /** |
|
| 74 | + * @param string $methodName |
|
| 75 | + * @param string $returnTypeHint |
|
| 76 | + */ |
|
| 70 | 77 | public function addMagicMethod( |
| 71 | 78 | $methodName, |
| 72 | 79 | $args, |
@@ -132,7 +139,7 @@ discard block |
||
| 132 | 139 | |
| 133 | 140 | /** |
| 134 | 141 | * @param $className |
| 135 | - * @param $alias |
|
| 142 | + * @param string $alias |
|
| 136 | 143 | */ |
| 137 | 144 | public function addUse($className, $alias = null) |
| 138 | 145 | { |
@@ -251,6 +258,9 @@ discard block |
||
| 251 | 258 | return $type . ucfirst($fieldName); |
| 252 | 259 | } |
| 253 | 260 | |
| 261 | + /** |
|
| 262 | + * @param string[] $matches |
|
| 263 | + */ |
|
| 254 | 264 | protected function reflectMagicMethods($matches) |
| 255 | 265 | { |
| 256 | 266 | list(, $static, $returnTypeHint, $returnsReference, $name, $args, $shortDescription) = $matches; |
@@ -300,7 +310,7 @@ discard block |
||
| 300 | 310 | } |
| 301 | 311 | |
| 302 | 312 | /** |
| 303 | - * @return mixed |
|
| 313 | + * @return string |
|
| 304 | 314 | */ |
| 305 | 315 | public function getNamespace() |
| 306 | 316 | { |
@@ -340,7 +350,7 @@ discard block |
||
| 340 | 350 | } |
| 341 | 351 | |
| 342 | 352 | /** |
| 343 | - * @return mixed |
|
| 353 | + * @return string |
|
| 344 | 354 | */ |
| 345 | 355 | public function getFileName() |
| 346 | 356 | { |
@@ -356,7 +366,7 @@ discard block |
||
| 356 | 366 | } |
| 357 | 367 | |
| 358 | 368 | /** |
| 359 | - * @return mixed |
|
| 369 | + * @return string |
|
| 360 | 370 | */ |
| 361 | 371 | public function getShortClassName() |
| 362 | 372 | { |