Completed
Push — master ( 29a5d6...6efa44 )
by Ehsan
02:43
created
src/Slackbot/utility/ClassUtility.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 class ClassUtility
11 11
 {
12 12
     /**
13
-     * @param $fullName
13
+     * @param string $fullName
14 14
      *
15 15
      * @return mixed
16 16
      */
Please login to merge, or discard this patch.
src/Slackbot/utility/LoggerUtility.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     private $logFilePath;
13 13
 
14 14
     /**
15
-     * @param $function
15
+     * @param string $function
16 16
      * @param string $message
17 17
      *
18 18
      * @throws \Exception
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     }
82 82
 
83 83
     /**
84
-     * @param $message
84
+     * @param string $message
85 85
      *
86 86
      * @throws \Exception
87 87
      *
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     }
112 112
 
113 113
     /**
114
-     * @param $logFilePath
114
+     * @param string $logFilePath
115 115
      */
116 116
     public function setLogFilePath($logFilePath)
117 117
     {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 
136 136
     /**
137 137
      * @param $function
138
-     * @param $message
138
+     * @param string $message
139 139
      *
140 140
      * @return string
141 141
      */
Please login to merge, or discard this patch.
src/Slackbot/utility/StringUtility.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 class StringUtility extends AbstractUtility
9 9
 {
10 10
     /**
11
-     * @param $json
11
+     * @param string $json
12 12
      *
13 13
      * @throws \Exception
14 14
      *
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      *
61 61
      * @param $string
62 62
      *
63
-     * @return mixed
63
+     * @return string
64 64
      */
65 65
     public function snakeCaseToCamelCase($string)
66 66
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
     /**
98 98
      * @param $haystack
99
-     * @param $needle
99
+     * @param string $needle
100 100
      *
101 101
      * @return bool
102 102
      */
Please login to merge, or discard this patch.
src/Slackbot/MessageAction.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
     /**
13 13
      * @param $info
14 14
      *
15
-     * @return mixed
15
+     * @return AbstractBaseSlack
16 16
      */
17 17
     public function load($info)
18 18
     {
Please login to merge, or discard this patch.
src/Slackbot/client/ApiClient.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * API CURL Call with post method.
100 100
      *
101
-     * @param $method
101
+     * @param string $method
102 102
      * @param array $arguments
103 103
      *
104 104
      * @throws \Exception
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
     }
196 196
 
197 197
     /**
198
-     * @return Team|mixed
198
+     * @return null|\Slackbot\AbstractBaseSlack
199 199
      */
200 200
     public function teamInfoAsObject()
201 201
     {
Please login to merge, or discard this patch.