• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IlyasDeckers / ody-core / 13532154862

25 Feb 2025 10:24PM UTC coverage: 30.374% (+1.7%) from 28.706%
13532154862

push

github

web-flow
Update php.yml

544 of 1791 relevant lines covered (30.37%)

9.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Logger.php
1
<?php
2
declare(strict_types=1);
3

4
namespace Ody\Core;
5

6
use Psr\Log\AbstractLogger;
7
use Psr\Log\InvalidArgumentException;
8
use Stringable;
9

10
use function error_log;
11

12
class Logger extends AbstractLogger
13
{
14
    /**
15
     * @param mixed             $level
16
     * @param string|Stringable $message
17
     * @param array<mixed>      $context
18
     *
19
     * @throws InvalidArgumentException
20
     */
21
    public function log($level, $message, array $context = []): void
×
22
    {
23
        error_log((string) $message);
×
24
    }
25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc