@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace AcquiroPay\Models\Entities; |
| 6 | 6 | |
@@ -22,42 +22,42 @@ discard block |
||
| 22 | 22 | $this->status = $status; |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - public function getDescription(): ?string |
|
| 25 | + public function getDescription(): ? string |
|
| 26 | 26 | { |
| 27 | 27 | return $this->description; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function setDescription(?string $description) |
|
| 30 | + public function setDescription(? string $description) |
|
| 31 | 31 | { |
| 32 | 32 | $this->description = $description; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public function getName(): ?string |
|
| 35 | + public function getName(): ? string |
|
| 36 | 36 | { |
| 37 | 37 | return $this->name; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - public function setName(?string $name) |
|
| 40 | + public function setName(? string $name) |
|
| 41 | 41 | { |
| 42 | 42 | $this->name = $name; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - public function getTemplatePath(): ?string |
|
| 45 | + public function getTemplatePath(): ? string |
|
| 46 | 46 | { |
| 47 | 47 | return $this->templatePath; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - public function setTemplatePath(?string $templatePath) |
|
| 50 | + public function setTemplatePath(? string $templatePath) |
|
| 51 | 51 | { |
| 52 | 52 | $this->templatePath = $templatePath; |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - public function getLayoutName(): ?string |
|
| 55 | + public function getLayoutName(): ? string |
|
| 56 | 56 | { |
| 57 | 57 | return $this->layoutName; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - public function setLayoutName(?string $layoutName) |
|
| 60 | + public function setLayoutName(? string $layoutName) |
|
| 61 | 61 | { |
| 62 | 62 | $this->layoutName = $layoutName; |
| 63 | 63 | } |