@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | $filesystem = new Filesystem(); |
19 | 19 | |
20 | 20 | $outputFileRepository->all() |
21 | - ->filter(function (OutputFile $file) { |
|
21 | + ->filter(function(OutputFile $file) { |
|
22 | 22 | if (!Str::contains($file->path(), 'episodio/')) { |
23 | 23 | return false; |
24 | 24 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | return $crawler->filter('link[rel="oldLink"]')->count(); |
30 | 30 | }) |
31 | - ->each(function (OutputFile $file) use ($jigsaw, $filesystem) { |
|
31 | + ->each(function(OutputFile $file) use ($jigsaw, $filesystem) { |
|
32 | 32 | $crawler = new Crawler(); |
33 | 33 | $crawler->addHtmlContent($file->content()); |
34 | 34 |