Completed
Push — master ( 079626...bbb9de )
by Níckolas Daniel
04:49
created
src/Infrastructure/Domain/Model/Post/JigsawPostRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     {
28 28
         return new PostCollection(
29 29
             $collection
30
-                ->map(function (PageVariable $post) {
30
+                ->map(function(PageVariable $post) {
31 31
                     return $this->jigsawPostFactory->newPostFromPageVariable($post);
32 32
                 })
33 33
                 ->toArray()
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         return new AudioEpisodeCollection(
40 40
             $collection
41
-                ->map(function (PageVariable $post) {
41
+                ->map(function(PageVariable $post) {
42 42
                     return $this->jigsawPostFactory->newAudioEpisodeFromPageVariable($post);
43 43
                 })
44 44
                 ->toArray()
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         return $this->jigsawCollectionToAudioEpisodeCollection(
80 80
             $this->jigsaw
81 81
                 ->getCollection('episodes')
82
-                ->filter(function (PageVariable $page) {
82
+                ->filter(function(PageVariable $page) {
83 83
                     return !is_null($page->episode['audioUrl']);
84 84
                 })
85 85
         );
Please login to merge, or discard this patch.