Completed
Push — master ( 057455...91afe8 )
by Benjamin
09:02
created
src/Gelf/Message.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -149,6 +149,9 @@  discard block
 block discarded – undo
149 149
         return $this->shortMessage;
150 150
     }
151 151
 
152
+    /**
153
+     * @param string $shortMessage
154
+     */
152 155
     public function setShortMessage($shortMessage)
153 156
     {
154 157
         $this->shortMessage = $shortMessage;
@@ -161,6 +164,9 @@  discard block
 block discarded – undo
161 164
         return $this->fullMessage;
162 165
     }
163 166
 
167
+    /**
168
+     * @param string $fullMessage
169
+     */
164 170
     public function setFullMessage($fullMessage)
165 171
     {
166 172
         $this->fullMessage = $fullMessage;
@@ -206,6 +212,9 @@  discard block
 block discarded – undo
206 212
         return $this->facility;
207 213
     }
208 214
 
215
+    /**
216
+     * @param string|null $facility
217
+     */
209 218
     public function setFacility($facility)
210 219
     {
211 220
         $this->facility = $facility;
Please login to merge, or discard this patch.
src/Gelf/Transport/HttpTransport.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      * Class constructor
68 68
      *
69 69
      * @param string|null     $host       when NULL or empty default-host is used
70
-     * @param int|null        $port       when NULL or empty default-port is used
70
+     * @param integer        $port       when NULL or empty default-port is used
71 71
      * @param string|null     $path       when NULL or empty default-path is used
72 72
      * @param SslOptions|null $sslOptions when null not SSL is used
73 73
      */
Please login to merge, or discard this patch.