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

lmc-eu / matej-client-php / 7536558481

15 Jan 2024 01:31PM UTC coverage: 100.0%. Remained the same
7536558481

push

github

OndraM
Bump actions/checkout from 3 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

712 of 712 relevant lines covered (100.0%)

35.03 hits per line

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

100.0
/src/RequestBuilder/ResetDatabaseRequestBuilder.php
1
<?php declare(strict_types=1);
2

3
namespace Lmc\Matej\RequestBuilder;
4

5
use Fig\Http\Message\RequestMethodInterface;
6
use Lmc\Matej\Model\Request;
7
use Lmc\Matej\Model\Response\PlainResponse;
8

9
/**
10
 * @method PlainResponse send()
11
 */
12
class ResetDatabaseRequestBuilder extends AbstractRequestBuilder
13
{
14
    protected const ENDPOINT_PATH = '/database';
15

16
    public function build(): Request
17
    {
18
        return new Request(
14✔
19
            self::ENDPOINT_PATH,
14✔
20
            RequestMethodInterface::METHOD_DELETE,
14✔
21
            [],
14✔
22
            $this->requestId,
14✔
23
            PlainResponse::class
14✔
24
        );
14✔
25
    }
26
}
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