Completed
Push — master ( adef2f...37f76d )
by Beñat
01:35
created
File/Infrastructure/Persistence/Sql/SqlListOfIdsSpecification.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -21,6 +21,10 @@
 block discarded – undo
21 21
     private $offset;
22 22
     private $limit;
23 23
 
24
+    /**
25
+     * @param integer $offset
26
+     * @param integer $limit
27
+     */
24 28
     public function __construct(array $ids, $offset, $limit)
25 29
     {
26 30
         $this->ids = $ids;
Please login to merge, or discard this patch.
src/BenGorFile/File/Application/Query/ListFilesOfIdsHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
             )
82 82
         );
83 83
 
84
-        return array_map(function (File $file) {
84
+        return array_map(function(File $file) {
85 85
             $this->dataTransformer->write($file);
86 86
 
87 87
             return $this->dataTransformer->read();
Please login to merge, or discard this patch.