Test Setup Failed
Branch master (b77bbc)
by Mikołaj
02:49
created
Category
src/Repository/PageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Repository/FrequentlyAskedQuestionRepositoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Repository/PageRepositoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Repository/BlockRepositoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Controller/PageSlugController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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\Controller;
14 14
 
Please login to merge, or discard this patch.
src/EventListener/ImageBlockUploadListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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\EventListener;
14 14
 
Please login to merge, or discard this patch.
src/Entity/Page.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
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
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * {@inheritdoc}
57 57
      */
58
-    public function setId(?int $id): void
58
+    public function setId(?int $id) : void
59 59
     {
60 60
         $this->id = $id;
61 61
     }
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * {@inheritdoc}
73 73
      */
74
-    public function setCode(?string $code): void
74
+    public function setCode(?string $code) : void
75 75
     {
76 76
         $this->code = $code;
77 77
     }
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     /**
88 88
      * {@inheritdoc}
89 89
      */
90
-    public function setSlug(?string $slug): void
90
+    public function setSlug(?string $slug) : void
91 91
     {
92 92
         $this->getPageTranslation()->setSlug($slug);
93 93
     }
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     /**
104 104
      * {@inheritdoc}
105 105
      */
106
-    public function setMetaKeywords(?string $metaKeywords): void
106
+    public function setMetaKeywords(?string $metaKeywords) : void
107 107
     {
108 108
         $this->getPageTranslation()->setMetaKeywords($metaKeywords);
109 109
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     /**
120 120
      * {@inheritdoc}
121 121
      */
122
-    public function setMetaDescription(?string $metaDescription): void
122
+    public function setMetaDescription(?string $metaDescription) : void
123 123
     {
124 124
         $this->getPageTranslation()->setMetaDescription($metaDescription);
125 125
     }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     /**
136 136
      * {@inheritdoc}
137 137
      */
138
-    public function setContent(?string $content): void
138
+    public function setContent(?string $content) : void
139 139
     {
140 140
         $this->getPageTranslation()->setContent($content);
141 141
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     /**
152 152
      * {@inheritdoc}
153 153
      */
154
-    public function setName(?string $name): void
154
+    public function setName(?string $name) : void
155 155
     {
156 156
         $this->getPageTranslation()->setName($name);
157 157
     }
Please login to merge, or discard this patch.
src/Entity/PageTranslationInterface.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
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
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * @param string $content |string
31 31
      */
32
-    public function setContent(?string $content): void;
32
+    public function setContent(?string $content) : void;
33 33
 
34 34
     /**
35 35
      * @return null|string
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * @param null|string $slug
41 41
      */
42
-    public function setSlug(?string $slug): void;
42
+    public function setSlug(?string $slug) : void;
43 43
 
44 44
     /**
45 45
      * @return null|string
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * @param null|string $name
51 51
      */
52
-    public function setName(?string $name): void;
52
+    public function setName(?string $name) : void;
53 53
 
54 54
     /**
55 55
      * @return null|string
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * @param null|string $metaKeywords
61 61
      */
62
-    public function setMetaKeywords(?string $metaKeywords): void;
62
+    public function setMetaKeywords(?string $metaKeywords) : void;
63 63
 
64 64
     /**
65 65
      * @return null|string
@@ -69,5 +69,5 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * @param null|string $metaDescription
71 71
      */
72
-    public function setMetaDescription(?string $metaDescription): void;
72
+    public function setMetaDescription(?string $metaDescription) : void;
73 73
 }
Please login to merge, or discard this patch.
src/Entity/FrequentlyAskedQuestionTranslation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.