File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 19
19
use Psr \Log \InvalidArgumentException ;
20
20
use Psr \Log \LoggerInterface ;
21
21
use Psr \Log \LoggerTrait ;
22
+ use Stringable ;
22
23
23
24
/**
24
25
* Phalcon Proxy PSR-3.
@@ -38,15 +39,15 @@ class Logger extends AbstractLogger implements LoggerInterface
38
39
/**
39
40
* Logs with an arbitrary level.
40
41
*
41
- * @param mixed $level
42
- * @param string|\ Stringable $message
43
- * @param mixed[] $context
42
+ * @param mixed $level
43
+ * @param string|Stringable $message
44
+ * @param mixed[] $context
44
45
*
45
46
* @return void
46
47
*
47
48
* @throws InvalidArgumentException
48
49
*/
49
- public function log ($ level , string |\ Stringable $ message , array $ context = []): void
50
+ public function log ($ level , string | Stringable $ message , array $ context = []): void
50
51
{
51
52
$ intLevel = $ this ->getLevelNumber ($ level );
52
53
You can’t perform that action at this time.
0 commit comments