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

tarlepp / symfony-flex-backend / #5760

14 Jun 2025 10:45AM UTC coverage: 100.0%. Remained the same
#5760

push

php-coveralls

web-flow
Merge pull request #3004 from tarlepp/chore(deps)/dependency-update

Chore(deps) - Dependency update

2299 of 2299 relevant lines covered (100.0%)

92.02 hits per line

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

100.0
/src/AutoMapper/UserGroup/AutoMapperConfiguration.php
1
<?php
2
declare(strict_types = 1);
3
/**
4
 * /src/AutoMapper/UserGroup/AutoMapperConfiguration.php
5
 *
6
 * @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
7
 */
8

9
namespace App\AutoMapper\UserGroup;
10

11
use App\AutoMapper\RestAutoMapperConfiguration;
12
use App\DTO\UserGroup\UserGroupCreate;
13
use App\DTO\UserGroup\UserGroupPatch;
14
use App\DTO\UserGroup\UserGroupUpdate;
15

16
/**
17
 * @package App\AutoMapper
18
 * @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
19
 */
20
class AutoMapperConfiguration extends RestAutoMapperConfiguration
21
{
22
    /**
23
     * Classes to use specified request mapper.
24
     *
25
     * @var array<int, class-string>
26
     */
27
    protected static array $requestMapperClasses = [
28
        UserGroupCreate::class,
29
        UserGroupUpdate::class,
30
        UserGroupPatch::class,
31
    ];
32

33
    public function __construct(
34
        RequestMapper $requestMapper,
35
    ) {
36
        parent::__construct($requestMapper);
78✔
37
    }
38
}
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