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

valkyrjaio / valkyrja / 16185661246

10 Jul 2025 03:48AM UTC coverage: 43.558% (-0.2%) from 43.747%
16185661246

push

github

MelechMizrachi
Http Routing: Updating ListCommand.

0 of 21 new or added lines in 1 file covered. (0.0%)

2913 existing lines in 212 files now uncovered.

3925 of 9011 relevant lines covered (43.56%)

11.07 hits per line

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

0.0
/src/Valkyrja/Http/Client/NullClient.php
1
<?php
2

3
declare(strict_types=1);
4

5
/*
6
 * This file is part of the Valkyrja Framework package.
7
 *
8
 * (c) Melech Mizrachi <melechmizrachi@gmail.com>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13

14
namespace Valkyrja\Http\Client;
15

16
use Override;
17
use Valkyrja\Http\Client\Contract\Client as Contract;
18
use Valkyrja\Http\Message\Factory\Contract\ResponseFactory;
19
use Valkyrja\Http\Message\Request\Contract\Request;
20
use Valkyrja\Http\Message\Response\Contract\Response;
21

22
/**
23
 * Class NullClient.
24
 *
25
 * @author Melech Mizrachi
26
 */
27
class NullClient implements Contract
28
{
29
    public function __construct(
30
        protected ResponseFactory $responseFactory,
31
    ) {
UNCOV
32
    }
×
33

34
    /**
35
     * @inheritDoc
36
     */
37
    #[Override]
38
    public function sendRequest(Request $request): Response
39
    {
UNCOV
40
        return $this->responseFactory->createResponse();
×
41
    }
42
}
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