• 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/Model/Response/PlainResponse.php
1
<?php declare(strict_types=1);
2

3
namespace Lmc\Matej\Model\Response;
4

5
use Lmc\Matej\Model\Response;
6

7
/**
8
 * Response for endpoints always returning data for only one command.
9
 */
10
class PlainResponse extends Response
11
{
12
    public function getData(): array
13
    {
14
        return $this->getCommandResponse(0)->getData();
7✔
15
    }
16

17
    public function getMessage(): string
18
    {
19
        return $this->getCommandResponse(0)->getMessage();
7✔
20
    }
21

22
    public function getStatus(): string
23
    {
24
        return $this->getCommandResponse(0)->getStatus();
7✔
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