@@ -27,7 +27,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | ); |