Completed
Push — master ( d7cb5b...31c113 )
by Nikita
11:15
created
src/Console/Command/Cache/RebuildInternalCacheCommand.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,6 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @param TaisiyaStyle $io
42 41
      */
43 42
     final protected function rebuildEventsSubscribersCache(InputInterface $input, OutputInterface $output): void
44 43
     {
@@ -66,7 +65,6 @@  discard block
 block discarded – undo
66 65
     }
67 66
 
68 67
     /**
69
-     * @param TaisiyaStyle $io
70 68
      */
71 69
     final protected function rebuildBundlesCache(InputInterface $input, OutputInterface $output): void
72 70
     {
@@ -94,7 +92,6 @@  discard block
 block discarded – undo
94 92
     }
95 93
 
96 94
     /**
97
-     * @param TaisiyaStyle $io
98 95
      */
99 96
     final protected function rebuildCommandsCache(InputInterface $input, OutputInterface $output): void
100 97
     {
Please login to merge, or discard this patch.
src/Composer/ScriptHandler.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
     final public static function runCommandEvents(Event $event): void
24 24
     {
25 25
         $app = file_exists(TAISIYA_ROOT.'/bootstrap.php')
26
-            ? require_once TAISIYA_ROOT.'/bootstrap.php' :
27
-            new App(['settings' => require_once TAISIYA_ROOT.'/app/config/settings.php']);
26
+            ? require_once TAISIYA_ROOT.'/bootstrap.php' : new App(['settings' => require_once TAISIYA_ROOT.'/app/config/settings.php']);
28 27
 
29 28
         /** @var EventDispatcher $dispatcher */
30 29
         $dispatcher = $app->getContainer()['event_dispatcher'];
Please login to merge, or discard this patch.
src/App.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,11 +23,11 @@
 block discarded – undo
23 23
     {
24 24
         parent::__construct($container);
25 25
 
26
-        $this->getContainer()['event_dispatcher'] = function (Container $pimple) {
26
+        $this->getContainer()['event_dispatcher'] = function(Container $pimple) {
27 27
             return new EventDispatcher();
28 28
         };
29 29
 
30
-        $this->getContainer()['console.output'] = function (Container $pimple) {
30
+        $this->getContainer()['console.output'] = function(Container $pimple) {
31 31
             return new ConsoleOutput(OutputInterface::VERBOSITY_VERBOSE);
32 32
         };
33 33
 
Please login to merge, or discard this patch.