Passed
Push — develop ( 6fd9c0...c82fb5 )
by nguereza
12:00 queued 08:37
created
app/Provider/AppServiceProvider.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @class AppServiceProvider
56 56
  * @package Platine\App\Provider
57 57
  */
58
-class AppServiceProvider extends ServiceProvider
59
-{
58
+class AppServiceProvider extends ServiceProvider {
60 59
     /**
61 60
      * {@inheritdoc}
62 61
      */
Please login to merge, or discard this patch.
app/Http/Action/HomeAction.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@
 block discarded – undo
58 58
  * @class HomeAction
59 59
  * @package Platine\App\Http\Action
60 60
  */
61
-class HomeAction implements RequestHandlerInterface
62
-{
61
+class HomeAction implements RequestHandlerInterface {
63 62
     /**
64 63
      * Create new instance
65 64
      * @param Template $template
Please login to merge, or discard this patch.
app/Console/Command/ServerCommand.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,14 +54,12 @@
 block discarded – undo
54 54
  * @class ServerCommand
55 55
  * @package Platine\App\Console\Command
56 56
  */
57
-class ServerCommand extends Command
58
-{
57
+class ServerCommand extends Command {
59 58
     /**
60 59
      * Create new instance
61 60
      * {@inheritdoc}
62 61
      */
63
-    public function __construct(protected Shell $shell)
64
-    {
62
+    public function __construct(protected Shell $shell) {
65 63
         parent::__construct('server', 'Command to manage PHP development server');
66 64
         $this->addOption('-a|--address', 'Server address', 'localhost', true);
67 65
         $this->addOption('-p|--port', 'Server listen port', '8080', true);
Please login to merge, or discard this patch.