@@ -21,13 +21,13 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | protected ?Mailcode_Commands_Command $command = null; |
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * @param string $message |
|
| 26 | - * @param string|NULL $details |
|
| 27 | - * @param int|NULL $code |
|
| 28 | - * @param Exception|NULL $previous |
|
| 29 | - * @param Mailcode_Commands_Command|NULL $command |
|
| 30 | - */ |
|
| 24 | + /** |
|
| 25 | + * @param string $message |
|
| 26 | + * @param string|NULL $details |
|
| 27 | + * @param int|NULL $code |
|
| 28 | + * @param Exception|NULL $previous |
|
| 29 | + * @param Mailcode_Commands_Command|NULL $command |
|
| 30 | + */ |
|
| 31 | 31 | public function __construct(string $message, $details=null, $code=null, $previous=null, ?Mailcode_Commands_Command $command=null) |
| 32 | 32 | { |
| 33 | 33 | parent::__construct($message, $details, $code, $previous); |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | $this->command = $command; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - /** |
|
| 39 | - * Retrieves the erroneous command, if any. |
|
| 40 | - * |
|
| 41 | - * @return Mailcode_Commands_Command|NULL |
|
| 42 | - */ |
|
| 38 | + /** |
|
| 39 | + * Retrieves the erroneous command, if any. |
|
| 40 | + * |
|
| 41 | + * @return Mailcode_Commands_Command|NULL |
|
| 42 | + */ |
|
| 43 | 43 | public function getCommand() : ?Mailcode_Commands_Command |
| 44 | 44 | { |
| 45 | 45 | return $this->command; |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | * @param Exception|NULL $previous |
| 29 | 29 | * @param Mailcode_Commands_Command|NULL $command |
| 30 | 30 | */ |
| 31 | - public function __construct(string $message, $details=null, $code=null, $previous=null, ?Mailcode_Commands_Command $command=null) |
|
| 31 | + public function __construct(string $message, $details = null, $code = null, $previous = null, ?Mailcode_Commands_Command $command = null) |
|
| 32 | 32 | { |
| 33 | 33 | parent::__construct($message, $details, $code, $previous); |
| 34 | 34 | |