Completed
Push — master ( 1f0fcc...3a4e94 )
by
unknown
15:19 queued 09:14
created
Form/Extension/FileNameTypeExtension.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         if (static::isLegacy()) {
26 26
             return FileType::class;
27 27
         }
28
-        else{
28
+        else {
29 29
             return 'file';
30 30
         }
31 31
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         if (static::isLegacy()) {
26 26
             return FileType::class;
27
-        }
28
-        else{
27
+        } else{
29 28
             return 'file';
30 29
         }
31 30
     }
Please login to merge, or discard this patch.
File/UploadableFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $this->root_path = $root_path;
26 26
         $this->web_path  = $web_path;
27 27
 
28
-        parent::__construct($root_path . $web_path);
28
+        parent::__construct($root_path.$web_path);
29 29
     }
30 30
 
31 31
     /**
Please login to merge, or discard this patch.
DependencyInjection/FenrizbesUploadableExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         if (isset($config['root_path']) && !empty($config['root_path'])) {
26 26
             $root_path = rtrim($config['root_path'], '/');
27 27
         } else {
28
-            $root_path = $container->getParameter('kernel.root_dir') .'/../web';
28
+            $root_path = $container->getParameter('kernel.root_dir').'/../web';
29 29
         }
30 30
 
31 31
         $container->setParameter('fenrizbes_uploadable.root_path', $root_path);
Please login to merge, or discard this patch.