Passed
Push — develop ( c66d22...ba64a1 )
by nguereza
03:53
created
src/Console/Command/MakeCrudActionCommand.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 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.
src/Http/Action/CrudAction.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,8 +68,7 @@
 block discarded – undo
68 68
 * @package Platine\Framework\Http\Action
69 69
 * @template TEntity as \Platine\Orm\Entity
70 70
 */
71
-class CrudAction
72
-{
71
+class CrudAction {
73 72
     /**
74 73
     * The Lang instance
75 74
     * @var Lang
Please login to merge, or discard this patch.