Completed
Push — master ( 5c9faa...76a394 )
by Basil
08:05
created
core/traits/ErrorHandlerTrait.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      *
63 63
      * @param string $message The message you want to send to the error api server.
64 64
      * @param string $file The you are currently send the message (use __FILE__)
65
-     * @param string $line The line you want to submit (use __LINE__)
65
+     * @param integer $line The line you want to submit (use __LINE__)
66 66
      * @return bool|null
67 67
      */
68 68
     public function transferMessage($message, $file = __FILE__, $line = __LINE__)
@@ -100,6 +100,7 @@  discard block
 block discarded – undo
100 100
     
101 101
     /**
102 102
      * @inheritdoc
103
+     * @param \Exception $exception
103 104
      */
104 105
     public function renderException($exception)
105 106
     {
@@ -175,7 +176,7 @@  discard block
 block discarded – undo
175 176
      * The main purpose is to remove passwords transferd to api when existing in post, get or session.
176 177
      * 
177 178
      * @param array $data
178
-     * @param array $key
179
+     * @param array $keys
179 180
      * @since 1.0.6
180 181
      */
181 182
     public function coverSensitiveValues(array $data, array $keys)
Please login to merge, or discard this patch.