@@ -58,8 +58,7 @@ |
||
| 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 | */ |
@@ -58,8 +58,7 @@ discard block |
||
| 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 |
||
| 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].', |
@@ -68,8 +68,7 @@ |
||
| 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 |