Passed
Push — master ( a0a7ae...6aacd7 )
by Jens
06:25 queued 02:52
created
src/components/BaseComponent.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         }
144 144
 
145 145
         /**
146
-         * @param $template
146
+         * @param string $template
147 147
          * @param null | Application $application
148 148
          * @return string
149 149
          */
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 
160 160
         /**
161 161
          * @param string $template
162
-         * @param $application
162
+         * @param Application|null $application
163 163
          * @return string
164 164
          */
165 165
         private function getTemplatePath($template, $application)
Please login to merge, or discard this patch.
src/components/cms/DocumentRouting.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-     * @param $request
57
+     * @param Request $request
58 58
      * @param CmsComponent $cmsComponent
59 59
      *
60 60
      * @throws \Exception
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     }
90 90
 
91 91
     /**
92
-     * @param $request
92
+     * @param Request $request
93 93
      * @param CmsComponent $cmsComponent
94 94
      */
95 95
     private function editDocumentRoute($request, $cmsComponent)
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     }
120 120
 
121 121
     /**
122
-     * @param $request
122
+     * @param Request $request
123 123
      * @param CmsComponent $cmsComponent
124 124
      */
125 125
     private function getBrickRoute($request, $cmsComponent)
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     }
141 141
 
142 142
     /**
143
-     * @param $request
143
+     * @param Request $request
144 144
      * @param CmsComponent $cmsComponent
145 145
      */
146 146
     private function deleteDocumentRoute($request, $cmsComponent)
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     }
153 153
 
154 154
     /**
155
-     * @param $request
155
+     * @param Request $request
156 156
      * @param CmsComponent $cmsComponent
157 157
      */
158 158
     private function publishDocumentRoute($request, $cmsComponent)
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     }
167 167
 
168 168
     /**
169
-     * @param $request
169
+     * @param Request $request
170 170
      * @param CmsComponent $cmsComponent
171 171
      */
172 172
     private function unpublishDocumentRoute($request, $cmsComponent)
Please login to merge, or discard this patch.
src/components/cms/ImagesRouting.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * ImagesRouting constructor.
19 19
      * @param \CloudControl\Cms\cc\Request $request
20
-     * @param mixed|string $relativeCmsUri
20
+     * @param string $relativeCmsUri
21 21
      * @param CmsComponent $cmsComponent
22 22
      */
23 23
     public function __construct(Request $request, $relativeCmsUri, CmsComponent $cmsComponent)
Please login to merge, or discard this patch.
src/components/cms/SitemapRouting.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * SitemapRouting constructor.
20 20
      * @param \CloudControl\Cms\cc\Request $request
21
-     * @param mixed|string $relativeCmsUri
21
+     * @param string $relativeCmsUri
22 22
      * @param CmsComponent $cmsComponent
23 23
      */
24 24
     public function __construct(Request $request, $relativeCmsUri, CmsComponent $cmsComponent)
Please login to merge, or discard this patch.
src/components/LanguageComponent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
      * if an action is to be taken.
84 84
      *
85 85
      * @param $lang
86
-     * @param $request
86
+     * @param Request $request
87 87
      */
88 88
     private function detectLanguage($lang, $request)
89 89
     {
Please login to merge, or discard this patch.