Passed
Push — develop ( fac880...0713b1 )
by Jens
03:08
created
cloudcontrol/library/components/cms/DocumentRouting.php 1 patch
Doc Comments   +9 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@  discard block
 block discarded – undo
32 32
 
33 33
 
34 34
     /**
35
-     * @param $request
36
-     * @param $relativeCmsUri
35
+     * @param \library\cc\Request $request
36
+     * @param string $relativeCmsUri
37 37
      * @param CmsComponent $cmsComponent
38 38
      * @throws \Exception
39 39
      */
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @param $request
57
-     * @param $relativeCmsUri
56
+     * @param \library\cc\Request $request
57
+     * @param string $relativeCmsUri
58 58
      * @param CmsComponent $cmsComponent
59 59
      */
60 60
     private function folderRouting($request, $relativeCmsUri, $cmsComponent)
@@ -68,6 +68,11 @@  discard block
 block discarded – undo
68 68
         }
69 69
     }
70 70
 
71
+	/**
72
+	 * @param \library\cc\Request $request
73
+	 * @param string $relativeCmsUri
74
+	 * @param CmsComponent $cmsComponent
75
+	 */
71 76
 	private function valuelistsRouting($request, $relativeCmsUri, $cmsComponent)
72 77
 	{
73 78
 		if ($relativeCmsUri == '/documents/valuelists') {
Please login to merge, or discard this patch.
cloudcontrol/library/storage/Storage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@
 block discarded – undo
310 310
 		}
311 311
 
312 312
 		/**
313
-		 * @return \library\storage\storage\UsersStorage
313
+		 * @return ValuelistsStorage
314 314
 		 */
315 315
 		public function getValuelists()
316 316
 		{
Please login to merge, or discard this patch.
cloudcontrol/library/storage/storage/ValuelistsStorage.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * Get all valuelists
17 17
      *
18
-     * @return mixed
18
+     * @return \stdClass[]
19 19
      */
20 20
     public function getValuelists()
21 21
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @param $slug
60 60
      *
61
-     * @return mixed
61
+     * @return \stdClass|null
62 62
      */
63 63
     public function getValuelistBySlug($slug)
64 64
     {
Please login to merge, or discard this patch.