Completed
Push — master ( c4223d...e3af10 )
by Nikita
03:25
created
src/Composer/ScriptHandler.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Taisiya\CoreBundle\Composer;
4 4
 
5 5
 use Composer\EventDispatcher\Event;
6
-use Symfony\Component\Finder\Finder;
7
-use Symfony\Component\Finder\SplFileInfo;
8 6
 use Taisiya\CoreBundle\App;
9 7
 
10 8
 defined('TAISIYA_ROOT') || define('TAISIYA_ROOT', dirname(dirname(__DIR__)));
Please login to merge, or discard this patch.
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
     final public static function defaultCommand(Event $event): void
20 20
     {
21 21
         $app = file_exists(TAISIYA_ROOT.'/bootstrap.php')
22
-            ? require_once TAISIYA_ROOT.'/bootstrap.php':
23
-            new App();
22
+            ? require_once TAISIYA_ROOT.'/bootstrap.php' : new App();
24 23
 
25 24
 //        /** @var EventDispatcher $dispatcher */
26 25
 //        $dispatcher = $event->getComposer()->getEventDispatcher();
Please login to merge, or discard this patch.
src/Console/Command/Config/RebuildSettingsCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             ->path('vendor')
47 47
             ->files()
48 48
             ->name('settings.default.php')
49
-            ->filter(function (SplFileInfo $file) {
49
+            ->filter(function(SplFileInfo $file) {
50 50
                 return (bool) preg_match('/\/app\/config\//', $file->getPathname());
51 51
             });
52 52
 
Please login to merge, or discard this patch.