Passed
Push — develop ( c66d22...ba64a1 )
by nguereza
03:53
created
src/Config/ConfigurationRepositoryInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,6 +55,5 @@
 block discarded – undo
55 55
  * @template TDbConfigurationEntity as \Platine\Orm\Entity
56 56
  * @extends RepositoryInterface<TDbConfigurationEntity>
57 57
  */
58
-interface ConfigurationRepositoryInterface extends RepositoryInterface
59
-{
58
+interface ConfigurationRepositoryInterface extends RepositoryInterface {
60 59
 }
Please login to merge, or discard this patch.
src/Console/BaseCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
  * @class BaseCommand
58 58
  * @package Platine\Framework\Console
59 59
  */
60
-abstract class BaseCommand extends Command
61
-{
60
+abstract class BaseCommand extends Command {
62 61
     /**
63 62
      * The Application instance
64 63
      * @var Application
Please login to merge, or discard this patch.
src/Console/MakeCommand.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@  discard block
 block discarded – undo
56 56
  * @class MakeCommand
57 57
  * @package Platine\Framework\Console
58 58
  */
59
-abstract class MakeCommand extends BaseCommand
60
-{
59
+abstract class MakeCommand extends BaseCommand {
61 60
     /**
62 61
      * The type of class
63 62
      * @var string
@@ -93,8 +92,7 @@  discard block
 block discarded – undo
93 92
     /**
94 93
      * {@inheritdoc}
95 94
      */
96
-    public function execute()
97
-    {
95
+    public function execute() {
98 96
         $io = $this->io();
99 97
         $writer = $io->writer();
100 98
         $name = $this->className;
Please login to merge, or discard this patch.
src/Helper/Timer/Watch.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -142,10 +142,10 @@
 block discarded – undo
142 142
     }
143 143
 
144 144
     /**
145
-    * Get watch
146
-    * @param string $name
147
-    * @return Timer
148
-    */
145
+     * Get watch
146
+     * @param string $name
147
+     * @return Timer
148
+     */
149 149
     public function getWatch(string $name): Timer
150 150
     {
151 151
         if (array_key_exists($name, $this->timers) === false) {
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
  * @class Watch
55 55
  * @package Platine\Framework\Helper\Timer
56 56
  */
57
-class Watch
58
-{
57
+class Watch {
59 58
     /**
60 59
      * The default name to use if none is provided
61 60
      */
Please login to merge, or discard this patch.
src/Helper/Timer/Timer.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * @class Timer
55 55
  * @package Platine\Framework\Helper\Timer
56 56
  */
57
-class Timer
58
-{
57
+class Timer {
59 58
     public const NOT_STARTED = 0;
60 59
     public const STARTED = 1;
61 60
     public const PAUSED = 2;
@@ -89,8 +88,7 @@  discard block
 block discarded – undo
89 88
      * Create new timer instance
90 89
      * @param string $name
91 90
      */
92
-    public function __construct(string $name)
93
-    {
91
+    public function __construct(string $name) {
94 92
         $this->name = $name;
95 93
     }
96 94
 
Please login to merge, or discard this patch.
src/Service/Provider/EncryptionServiceProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
     public function register(): void
67 67
     {
68 68
         $this->app->bind(AdapterInterface::class, OpenSSL::class);
69
-        $this->app->bind(Encryption::class, function (ContainerInterface $app) {
69
+        $this->app->bind(Encryption::class, function(ContainerInterface $app) {
70 70
             $e = new Encryption($app->get(AdapterInterface::class));
71 71
             $e->setSecret($app->get(Config::class)->get('security.encryption.key', ''));
72 72
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@
 block discarded – undo
58 58
  * @class EncryptionServiceProvider
59 59
  * @package Platine\Framework\Service\Provider
60 60
  */
61
-class EncryptionServiceProvider extends ServiceProvider
62
-{
61
+class EncryptionServiceProvider extends ServiceProvider {
63 62
     /**
64 63
      * {@inheritdoc}
65 64
      */
Please login to merge, or discard this patch.
src/Console/Command/MakeResourceActionCommand.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,8 +65,7 @@
 block discarded – undo
65 65
  * @class MakeResourceActionCommand
66 66
  * @package Platine\Framework\Console\Command
67 67
  */
68
-class MakeResourceActionCommand extends MakeCommand
69
-{
68
+class MakeResourceActionCommand extends MakeCommand {
70 69
     /**
71 70
      * {@inheritdoc}
72 71
      */
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     ) {
108 108
         parent::__construct($application, $filesystem);
109 109
         $this->setName('make:resource')
110
-              ->setDescription('Command to generate platine resource action');
110
+                ->setDescription('Command to generate platine resource action');
111 111
 
112 112
         $this->addOption(
113 113
             '-c|--fields',
@@ -217,9 +217,9 @@  discard block
 block discarded – undo
217 217
         $this->addProperty($this->repositoryClass);
218 218
     }
219 219
 
220
-     /**
221
-     * {@inheritdoc}
222
-     */
220
+        /**
221
+         * {@inheritdoc}
222
+         */
223 223
     public function getClassTemplate(): string
224 224
     {
225 225
         return <<<EOF
Please login to merge, or discard this patch.
src/Console/Command/MakeCrudActionCommand.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     ) {
77 77
         parent::__construct($application, $filesystem);
78 78
         $this->setName('make:crud')
79
-              ->setDescription('Command to generate platine CRUD action');
79
+                ->setDescription('Command to generate platine CRUD action');
80 80
     }
81 81
 
82 82
     /**
@@ -92,9 +92,9 @@  discard block
 block discarded – undo
92 92
         $this->recordResourceClasses();
93 93
     }
94 94
 
95
-     /**
96
-     * {@inheritdoc}
97
-     */
95
+        /**
96
+         * {@inheritdoc}
97
+         */
98 98
     public function getClassTemplate(): string
99 99
     {
100 100
         return <<<EOF
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@
 block discarded – undo
58 58
  * @class MakeCrudActionCommand
59 59
  * @package Platine\Framework\Console\Command
60 60
  */
61
-class MakeCrudActionCommand extends MakeResourceActionCommand
62
-{
61
+class MakeCrudActionCommand extends MakeResourceActionCommand {
63 62
     /**
64 63
      * {@inheritdoc}
65 64
      */
Please login to merge, or discard this patch.
src/Http/Emitter/ResponseEmitter.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@  discard block
 block discarded – undo
58 58
  * @class ResponseEmitter
59 59
  * @package Platine\Framework\Http\Emitter
60 60
  */
61
-class ResponseEmitter implements EmitterInterface
62
-{
61
+class ResponseEmitter implements EmitterInterface {
63 62
     /**
64 63
      * The response buffer length
65 64
      * @var int|null
@@ -70,8 +69,7 @@  discard block
 block discarded – undo
70 69
      * Create new instance
71 70
      * @param int|null $bufferLength
72 71
      */
73
-    public function __construct(?int $bufferLength = null)
74
-    {
72
+    public function __construct(?int $bufferLength = null) {
75 73
         if ($bufferLength !== null && $bufferLength < 1) {
76 74
             throw new InvalidArgumentException(sprintf(
77 75
                 'The response buffer length must be greater than zero; received [%d].',
Please login to merge, or discard this patch.