Completed
Push — master ( 970de3...679bb4 )
by
unknown
02:05
created
src/Db/AbstractDaoService.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,6 @@
 block discarded – undo
20 20
  */
21 21
 namespace Minotaur\Db;
22 22
 
23
-use Labrys\Getter;
24
-
25 23
 /**
26 24
  * Abstract DAO-backed Service
27 25
  */
Please login to merge, or discard this patch.
src/Db/AbstractMongoDao.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -413,7 +413,6 @@
 block discarded – undo
413 413
      * Updates a record.
414 414
      *
415 415
      * @param \MongoDB\BSON\ObjectID|string $id The document identifier, either a string or `ObjectID`
416
-     * @param array<string,array<string,mixed>> $operations The operations to send to MongoDB
417 416
      * @param $version - Optional version for optimistic lock checking
418 417
      * @return - Whatever MongoDB returns
419 418
      * @throws \Caridea\Dao\Exception\Unreachable If the connection fails
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
  */
21 21
 namespace Minotaur\Db;
22 22
 
23
-use ArrayIterator;
24 23
 use MongoDB\BSON\ObjectID;
25 24
 use MongoDB\Driver\Cursor;
26 25
 use MongoDB\Driver\Manager;
Please login to merge, or discard this patch.
src/Net/CurlHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      * cURL handle will be created for you), and the cURL request will be executed
93 93
      * and the `string` result will be retuned.
94 94
      *
95
-     * @param resource|string $urlOrHandle - An existing cURL handle or a
95
+     * @param resource $urlOrHandle - An existing cURL handle or a
96 96
      *     `string` URL. String URLs will create a default cURL GET handle.
97 97
      * @return - The `string` result of the cURL request.
98 98
      * @throws \Minotaur\Net\Exception\Unreachable if the remote server cannot be reached
Please login to merge, or discard this patch.
src/Route/Plugin.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,6 @@
 block discarded – undo
40 40
      *
41 41
      * @param \Psr\Http\Message\ServerRequestInterface $request The server request
42 42
      * @param \Psr\Http\Message\ResponseInterface $response The response
43
-     * @param callable $callable A function accepting a Request and a Response, returning a Response.
44 43
      * @return \Psr\Http\Message\ResponseInterface The response
45 44
      */
46 45
     public function __invoke(Request $request, Response $response, callable $next): Response;
Please login to merge, or discard this patch.
src/Tags/HasAttributes.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -45,6 +45,7 @@
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * @inheritDoc
48
+     * @param string $val
48 49
      */
49 50
     public function setAttribute(string $attr, $val)
50 51
     {
Please login to merge, or discard this patch.
src/Http/MessageHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * Gets a `Map` of the request body content.
35 35
      *
36 36
      * @param $request - The request
37
-     * @return array<string,mixed> The Map of request body content
37
+     * @return \ConstMap The Map of request body content
38 38
      */
39 39
     protected function getParsedBodyMap(Request $request): \ConstMap
40 40
     {
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * Gets a `Map` of the request query params.
47 47
      *
48 48
      * @param $request - The request
49
-     * @return array<string,mixed> The Map of query params
49
+     * @return \ConstMap The Map of query params
50 50
      */
51 51
     protected function getQueryParamsMap(Request $request): \ConstMap
52 52
     {
Please login to merge, or discard this patch.