@@ -113,6 +113,9 @@ discard block |
||
| 113 | 113 | return '[unknown('.gettype($data).')]'; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | + /** |
|
| 117 | + * @param \Throwable $e |
|
| 118 | + */ |
|
| 116 | 119 | protected function normalizeException($e) |
| 117 | 120 | { |
| 118 | 121 | // TODO 2.0 only check for Throwable |
@@ -277,6 +280,7 @@ discard block |
||
| 277 | 280 | * can be used as a callback for array_walk_recursive. |
| 278 | 281 | * |
| 279 | 282 | * @param mixed &$data Input to check and convert if needed |
| 283 | + * @param string $data |
|
| 280 | 284 | * @private |
| 281 | 285 | */ |
| 282 | 286 | public function detectAndCleanUtf8(&$data) |
@@ -284,6 +288,10 @@ discard block |
||
| 284 | 288 | if (is_string($data) && !preg_match('//u', $data)) { |
| 285 | 289 | $data = preg_replace_callback( |
| 286 | 290 | '/[\x80-\xFF]+/', |
| 291 | + |
|
| 292 | + /** |
|
| 293 | + * @param string $m |
|
| 294 | + */ |
|
| 287 | 295 | function ($m) { return utf8_encode($m[0]); }, |
| 288 | 296 | $data |
| 289 | 297 | ); |
@@ -118,7 +118,7 @@ |
||
| 118 | 118 | /** |
| 119 | 119 | * Sets minimum logging level at which this handler will be triggered. |
| 120 | 120 | * |
| 121 | - * @param int|string $level Level or level name |
|
| 121 | + * @param integer $level Level or level name |
|
| 122 | 122 | * @return self |
| 123 | 123 | */ |
| 124 | 124 | public function setLevel($level) |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * @param int|string|array $minLevelOrList A list of levels to accept or a minimum level or level name if maxLevel is provided |
| 74 | - * @param int|string $maxLevel Maximum level or level name to accept, only used if $minLevelOrList is not an array |
|
| 74 | + * @param integer $maxLevel Maximum level or level name to accept, only used if $minLevelOrList is not an array |
|
| 75 | 75 | */ |
| 76 | 76 | public function setAcceptedLevels($minLevelOrList = Logger::DEBUG, $maxLevel = Logger::EMERGENCY) |
| 77 | 77 | { |
@@ -74,6 +74,9 @@ |
||
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | + /** |
|
| 78 | + * @param string $endpoint |
|
| 79 | + */ |
|
| 77 | 80 | protected function send($data, $endpoint) |
| 78 | 81 | { |
| 79 | 82 | $url = sprintf("https://%s/%s/%s/", self::HOST, $endpoint, $this->token); |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | /** |
| 85 | 85 | * Add headers to the message |
| 86 | 86 | * |
| 87 | - * @param string|array $headers Custom added headers |
|
| 87 | + * @param string $headers Custom added headers |
|
| 88 | 88 | * @return self |
| 89 | 89 | */ |
| 90 | 90 | public function addHeader($headers) |
@@ -212,7 +212,7 @@ |
||
| 212 | 212 | /** |
| 213 | 213 | * Gets extra parameters supported by Raven that can be found in "extra" and "context" |
| 214 | 214 | * |
| 215 | - * @return array |
|
| 215 | + * @return string[] |
|
| 216 | 216 | */ |
| 217 | 217 | protected function getExtraParameters() |
| 218 | 218 | { |
@@ -85,6 +85,11 @@ |
||
| 85 | 85 | */ |
| 86 | 86 | private $normalizerFormatter; |
| 87 | 87 | |
| 88 | + /** |
|
| 89 | + * @param string $channel |
|
| 90 | + * @param string $username |
|
| 91 | + * @param string $userIcon |
|
| 92 | + */ |
|
| 88 | 93 | public function __construct($channel = null, $username = null, $useAttachment = true, $userIcon = null, $useShortAttachment = false, $includeContextAndExtra = false, array $excludeFields = array(), FormatterInterface $formatter = null) |
| 89 | 94 | { |
| 90 | 95 | $this->channel = $channel; |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | /** |
| 161 | 161 | * Get current in-transfer timeout |
| 162 | 162 | * |
| 163 | - * @return float |
|
| 163 | + * @return integer |
|
| 164 | 164 | */ |
| 165 | 165 | public function getTimeout() |
| 166 | 166 | { |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | /** |
| 171 | 171 | * Get current local writing timeout |
| 172 | 172 | * |
| 173 | - * @return float |
|
| 173 | + * @return integer |
|
| 174 | 174 | */ |
| 175 | 175 | public function getWritingTimeout() |
| 176 | 176 | { |
@@ -235,6 +235,9 @@ discard block |
||
| 235 | 235 | return stream_get_meta_data($this->resource); |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | + /** |
|
| 239 | + * @param double $value |
|
| 240 | + */ |
|
| 238 | 241 | private function validateTimeout($value) |
| 239 | 242 | { |
| 240 | 243 | $ok = filter_var($value, FILTER_VALIDATE_FLOAT); |
@@ -290,6 +293,9 @@ discard block |
||
| 290 | 293 | } |
| 291 | 294 | } |
| 292 | 295 | |
| 296 | + /** |
|
| 297 | + * @param string $data |
|
| 298 | + */ |
|
| 293 | 299 | private function writeToSocket($data) |
| 294 | 300 | { |
| 295 | 301 | $length = strlen($data); |
@@ -319,6 +325,9 @@ discard block |
||
| 319 | 325 | } |
| 320 | 326 | } |
| 321 | 327 | |
| 328 | + /** |
|
| 329 | + * @param integer $sent |
|
| 330 | + */ |
|
| 322 | 331 | private function writingIsTimedOut($sent) |
| 323 | 332 | { |
| 324 | 333 | $writingTimeout = (int) floor($this->writingTimeout); |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | private $dirCreated; |
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | - * @param resource|string $stream |
|
| 33 | + * @param string $stream |
|
| 34 | 34 | * @param int $level The minimum logging level at which this handler will be triggered |
| 35 | 35 | * @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not |
| 36 | 36 | * @param int|null $filePermission Optional file permissions (default (0644) are only for owner read/write) |