Passed
Push — v2 ( 78df1e...55c81e )
by Brice
02:24
created
src/Configuration/CategoryRegistry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             return null;
33 33
         }
34 34
 
35
-        $categoryVendors= self::$categories[$category];
35
+        $categoryVendors = self::$categories[$category];
36 36
 
37 37
         if (isset($categoryVendors[$vendor]) and $id = $categoryVendors[$vendor]) {
38 38
             return $id;
Please login to merge, or discard this patch.
example/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
 
19 19
 // Create an Asset
20 20
 $asset = AssetFactory::build(
21
-    "$root/tests/video.mp4",        // path to file of a Flysystem\File object
22
-    'My Video',                     // optional title
23
-    'This is an awesome video',     // optional description
21
+    "$root/tests/video.mp4", // path to file of a Flysystem\File object
22
+    'My Video', // optional title
23
+    'This is an awesome video', // optional description
24 24
     ['test', 'asset-distributor']   // optional array of tags
25 25
 );
26 26
 $asset->setVisibility('private');
Please login to merge, or discard this patch.