Completed
Push — master ( 02b993...3405ac )
by Mikołaj
02:38
created
src/component/Html/Breadcrumbs.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -60,6 +60,9 @@
 block discarded – undo
60 60
         return $this->classes;
61 61
     }
62 62
 
63
+    /**
64
+     * @param integer $nesting
65
+     */
63 66
     public function setNesting($nesting)
64 67
     {
65 68
         $this->nesting = $nesting;
Please login to merge, or discard this patch.
src/install/DataGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -88,6 +88,9 @@
 block discarded – undo
88 88
         return $sText;
89 89
     }
90 90
 
91
+    /**
92
+     * @return string
93
+     */
91 94
     public function clearDiacritics($sText)
92 95
     {
93 96
         $aReplacePL = array(
Please login to merge, or discard this patch.
src/module/Galleries/Roll/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * Returns total number of galleries items.
11 11
      *
12
-     * @param array|string $where
12
+     * @param string $where
13 13
      *
14 14
      * @return int
15 15
      */
Please login to merge, or discard this patch.
src/component/ErrorHandler/Handler/UserFriendlyHandler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
     /**
39 39
      * Displays an error message in html.
40 40
      *
41
+     * @param integer $code
41 42
      * @return string
42 43
      */
43 44
     public function displayDefaultMessage($code, $message, $text)
Please login to merge, or discard this patch.
src/component/Hooks/Action.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -92,8 +92,6 @@
 block discarded – undo
92 92
      * @since 0.1
93 93
      *
94 94
      * @param string $tag     The name of the action to be executed.
95
-     * @param mixed  $arg,... Optional additional arguments which are passed on to the functions
96
-     *                        hooked to the action.
97 95
      */
98 96
     public static function dispatch($tag, $arg = '')
99 97
     {
Please login to merge, or discard this patch.
src/framework/Model/BaseModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Create connection with database.
47 47
      *
48
-     * @return object PDO
48
+     * @return PDO PDO
49 49
      */
50 50
     private function connect()
51 51
     {
Please login to merge, or discard this patch.
src/module/Pages/One/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * @param array $path
13 13
      * @param array $pages
14 14
      *
15
-     * @return int|bool
15
+     * @return integer
16 16
      */
17 17
     public function getPageIdByPath(array $path, array $pages)
18 18
     {
Please login to merge, or discard this patch.
src/module/Pages/Roll/Admin/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     /**
42 42
      * Returns total number of pages items.
43 43
      *
44
-     * @param array|string $where
44
+     * @param string $where
45 45
      *
46 46
      * @return int
47 47
      */
Please login to merge, or discard this patch.
src/component/Auth/Auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
      *
150 150
      * @param string $email
151 151
      *
152
-     * @return array|bool
152
+     * @return string
153 153
      */
154 154
     public function getUserDataByEmail($email)
155 155
     {
Please login to merge, or discard this patch.