@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Entity; |
| 14 | 14 | |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | /** |
| 31 | 31 | * @param null|string $slug |
| 32 | 32 | */ |
| 33 | - public function setSlug(?string $slug): void; |
|
| 33 | + public function setSlug(?string $slug) : void; |
|
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * @return null|string |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | /** |
| 41 | 41 | * @param null|string $code |
| 42 | 42 | */ |
| 43 | - public function setCode(?string $code): void; |
|
| 43 | + public function setCode(?string $code) : void; |
|
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | 46 | * @return null|string |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | /** |
| 51 | 51 | * @param null|string $metaKeywords |
| 52 | 52 | */ |
| 53 | - public function setMetaKeywords(?string $metaKeywords): void; |
|
| 53 | + public function setMetaKeywords(?string $metaKeywords) : void; |
|
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * @return null|string |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | /** |
| 61 | 61 | * @param null|string $metaDescription |
| 62 | 62 | */ |
| 63 | - public function setMetaDescription(?string $metaDescription): void; |
|
| 63 | + public function setMetaDescription(?string $metaDescription) : void; |
|
| 64 | 64 | |
| 65 | 65 | /** |
| 66 | 66 | * @return null|string |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | /** |
| 71 | 71 | * @param string $content |string |
| 72 | 72 | */ |
| 73 | - public function setContent(?string $content): void; |
|
| 73 | + public function setContent(?string $content) : void; |
|
| 74 | 74 | |
| 75 | 75 | /** |
| 76 | 76 | * @return null|string |
@@ -80,5 +80,5 @@ discard block |
||
| 80 | 80 | /** |
| 81 | 81 | * @param null|string $name |
| 82 | 82 | */ |
| 83 | - public function setName(?string $name): void; |
|
| 83 | + public function setName(?string $name) : void; |
|
| 84 | 84 | } |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Entity; |
| 14 | 14 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | /** |
| 75 | 75 | * {@inheritdoc} |
| 76 | 76 | */ |
| 77 | - public function setContent(?string $content): void |
|
| 77 | + public function setContent(?string $content) : void |
|
| 78 | 78 | { |
| 79 | 79 | $this->content = $content; |
| 80 | 80 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | /** |
| 91 | 91 | * {@inheritdoc} |
| 92 | 92 | */ |
| 93 | - public function setSlug(?string $slug): void |
|
| 93 | + public function setSlug(?string $slug) : void |
|
| 94 | 94 | { |
| 95 | 95 | $this->slug = $slug; |
| 96 | 96 | } |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | /** |
| 107 | 107 | * {@inheritdoc} |
| 108 | 108 | */ |
| 109 | - public function setName(?string $name): void |
|
| 109 | + public function setName(?string $name) : void |
|
| 110 | 110 | { |
| 111 | 111 | $this->name = $name; |
| 112 | 112 | } |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | /** |
| 123 | 123 | * {@inheritdoc} |
| 124 | 124 | */ |
| 125 | - public function setMetaKeywords(?string $metaKeywords): void |
|
| 125 | + public function setMetaKeywords(?string $metaKeywords) : void |
|
| 126 | 126 | { |
| 127 | 127 | $this->metaKeywords = $metaKeywords; |
| 128 | 128 | } |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | /** |
| 139 | 139 | * {@inheritdoc} |
| 140 | 140 | */ |
| 141 | - public function setMetaDescription(?string $metaDescription): void |
|
| 141 | + public function setMetaDescription(?string $metaDescription) : void |
|
| 142 | 142 | { |
| 143 | 143 | $this->metaDescription = $metaDescription; |
| 144 | 144 | } |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Exception; |
| 14 | 14 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * This file was created by the developers from BitBag. |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Fixture; |
| 14 | 14 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Fixture; |
| 14 | 14 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Repository; |
| 14 | 14 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Repository; |
| 14 | 14 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | * an email on [email protected]. |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace BitBag\CmsPlugin\Repository; |
| 14 | 14 | |