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

jorge07 / symfony-5-es-cqrs-boilerplate / #166

06 Feb 2026 10:12AM UTC coverage: 88.404% (+1.2%) from 87.168%
#166

push

web-flow
Merge c345ce76d into 847c843ce

36 of 45 new or added lines in 21 files covered. (80.0%)

9 existing lines in 4 files now uncovered.

587 of 664 relevant lines covered (88.4%)

8.86 hits per line

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

33.33
/src/App/User/Domain/ValueObject/Auth/Credentials.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\User\Domain\ValueObject\Auth;
6

7
use App\User\Domain\ValueObject\Email;
8

9
final class Credentials
10
{
11
    public function __construct(
12
        public readonly Email $email,
13
        public readonly HashedPassword $password,
14
    ) {
15
    }
32✔
16

17
    public function equals(self $other): bool
18
    {
NEW
19
        return $this->email->equals($other->email)
×
NEW
20
            && $this->password->equals($other->password);
×
21
    }
22
}
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