Completed
Branch master (ce8244)
by Jonathan
09:10
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 1 patch
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.
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.