Passed
Push — dev ( e37e95...e2bd7a )
by Enjoys
02:30
created
src/CollectStrategy/Strategy/OneFileStrategy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@
 block discarded – undo
41 41
         $this->filePath = $environment->getCompileDir() . DIRECTORY_SEPARATOR . $filename;
42 42
         $this->fileUrl = $environment->getBaseUrl() . '/' . str_replace(DIRECTORY_SEPARATOR, '/', $filename);
43 43
 
44
-        $this->notCollect = array_filter($assetsCollection, function ($asset){
44
+        $this->notCollect = array_filter($assetsCollection, function($asset) {
45 45
             /** @var Asset $asset */
46 46
             return $asset->isNotCollect();
47 47
         });
48 48
 
49
-        $this->assetsCollection = array_filter($assetsCollection, function ($asset){
49
+        $this->assetsCollection = array_filter($assetsCollection, function($asset) {
50 50
             /** @var Asset $asset */
51 51
             return !$asset->isNotCollect();
52 52
         });
Please login to merge, or discard this patch.