Passed
Push — feature/code_improvement ( 50ca4e...05471b )
by Thierry
02:57
created
src/Features/Validator.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      *
30 30
      * @param string        $sName            The function name
31 31
      *
32
-     * @return boolean            True if the function name is valid, and false if not
32
+     * @return integer            True if the function name is valid, and false if not
33 33
      */
34 34
     public function validateFunction($sName)
35 35
     {
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      *
42 42
      * @param string        $sName            The event name
43 43
      *
44
-     * @return boolean            True if the event name is valid, and false if not
44
+     * @return integer            True if the event name is valid, and false if not
45 45
      */
46 46
     public function validateEvent($sName)
47 47
     {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      *
54 54
      * @param string        $sName            The class name
55 55
      *
56
-     * @return boolean            True if the class name is valid, and false if not
56
+     * @return integer            True if the class name is valid, and false if not
57 57
      */
58 58
     public function validateClass($sName)
59 59
     {
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      *
66 66
      * @param string        $sName            The function name
67 67
      *
68
-     * @return boolean            True if the method name is valid, and false if not
68
+     * @return integer            True if the method name is valid, and false if not
69 69
      */
70 70
     public function validateMethod($sName)
71 71
     {
Please login to merge, or discard this patch.
src/Response/Features/JsCommands.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      *
28 28
      * @param string        $sName              The command name
29 29
      * @param array         $aAttributes        Associative array of attributes that will describe the command
30
-     * @param mixed         $mData              The data to be associated with this command
30
+     * @param string         $mData              The data to be associated with this command
31 31
      * @param boolean       $bRemoveEmpty       If true, remove empty attributes
32 32
      *
33 33
      * @return Response
Please login to merge, or discard this patch.
src/Utils/Validation/Validator.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @param string        $sName            The function name
69 69
      *
70
-     * @return boolean            True if the function name is valid, and false if not
70
+     * @return integer            True if the function name is valid, and false if not
71 71
      */
72 72
     public function validateFunction($sName)
73 73
     {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      *
81 81
      * @param string        $sName            The event name
82 82
      *
83
-     * @return boolean            True if the event name is valid, and false if not
83
+     * @return integer            True if the event name is valid, and false if not
84 84
      */
85 85
     public function validateEvent($sName)
86 86
     {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      *
94 94
      * @param string        $sName            The class name
95 95
      *
96
-     * @return boolean            True if the class name is valid, and false if not
96
+     * @return integer            True if the class name is valid, and false if not
97 97
      */
98 98
     public function validateClass($sName)
99 99
     {
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      *
107 107
      * @param string        $sName            The function name
108 108
      *
109
-     * @return boolean            True if the method name is valid, and false if not
109
+     * @return integer            True if the method name is valid, and false if not
110 110
      */
111 111
     public function validateMethod($sName)
112 112
     {
Please login to merge, or discard this patch.