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

api-platform / core / 14922365773

09 May 2025 05:50AM UTC coverage: 6.886% (-1.6%) from 8.457%
14922365773

Pull #7134

github

web-flow
Merge ebf237e3f into 613bb5b75
Pull Request #7134: refactor(metadata): type parameters to list<string>|string

46 of 132 new or added lines in 15 files covered. (34.85%)

1 existing line in 1 file now uncovered.

10914 of 158496 relevant lines covered (6.89%)

6.26 hits per line

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

0.0
/tests/Fixtures/TestBundle/Entity/FilteredBooleanParameter.php
1
<?php
2

3
/*
4
 * This file is part of the API Platform project.
5
 *
6
 * (c) Kévin Dunglas <dunglas@gmail.com>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11

12
declare(strict_types=1);
13

14
namespace ApiPlatform\Tests\Fixtures\TestBundle\Entity;
15

16
use ApiPlatform\Doctrine\Orm\Filter\BooleanFilter;
17
use ApiPlatform\Metadata\ApiResource;
18
use ApiPlatform\Metadata\GetCollection;
19
use ApiPlatform\Metadata\QueryParameter;
20
use Doctrine\ORM\Mapping as ORM;
21
use Symfony\Component\TypeInfo\Type\BuiltinType;
22
use Symfony\Component\TypeInfo\TypeIdentifier;
23

24
#[ApiResource]
25
#[GetCollection(
26
    parameters: [
×
27
        'active' => new QueryParameter(
×
28
            filter: new BooleanFilter(),
×
NEW
29
            nativeType: new BuiltinType(TypeIdentifier::BOOL),
×
30
        ),
×
31
        'enabled' => new QueryParameter(
×
32
            filter: new BooleanFilter(),
×
33
            property: 'active',
×
NEW
34
            nativeType: new BuiltinType(TypeIdentifier::BOOL),
×
35
        ),
×
36
    ],
×
37
)]
×
38
#[ORM\Entity]
39
class FilteredBooleanParameter
40
{
41
    public function __construct(
42
        #[ORM\Column]
43
        #[ORM\Id]
44
        #[ORM\GeneratedValue(strategy: 'AUTO')]
45
        public ?int $id = null,
46

47
        #[ORM\Column(nullable: true)]
48
        public ?bool $active = null,
49
    ) {
50
    }
×
51

52
    public function getId(): ?int
53
    {
54
        return $this->id;
×
55
    }
56

57
    public function isActive(): bool
58
    {
59
        return $this->active;
×
60
    }
61

62
    public function setActive(?bool $isActive): void
63
    {
64
        $this->active = $isActive;
×
65
    }
66
}
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

© 2025 Coveralls, Inc