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

api-platform / core / 14925420478

09 May 2025 09:03AM UTC coverage: 7.739% (+0.6%) from 7.179%
14925420478

Pull #7134

github

web-flow
Merge a0984c209 into 4ddce1f53
Pull Request #7134: refactor(metadata): type parameters to list<string>|string

48 of 134 new or added lines in 15 files covered. (35.82%)

2 existing lines in 2 files now uncovered.

12267 of 158510 relevant lines covered (7.74%)

15.54 hits per line

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

0.0
/tests/Fixtures/TestBundle/Entity/FilteredExistsParameter.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\ExistsFilter;
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
    paginationItemsPerPage: 5,
×
27
    parameters: [
×
28
        'createdAt' => new QueryParameter(
×
29
            filter: new ExistsFilter(),
×
NEW
30
            nativeType: new BuiltinType(TypeIdentifier::BOOL),
×
31
        ),
×
32
        'hasCreationDate' => new QueryParameter(
×
33
            filter: new ExistsFilter(),
×
34
            property: 'createdAt',
×
NEW
35
            nativeType: new BuiltinType(TypeIdentifier::BOOL),
×
36
        ),
×
37
        'exists[:property]' => new QueryParameter(
×
38
            filter: new ExistsFilter(),
×
39
        ),
×
40
    ],
×
41
)]
×
42
#[ORM\Entity]
43
class FilteredExistsParameter
44
{
45
    public function __construct(
46
        #[ORM\Column]
47
        #[ORM\Id]
48
        #[ORM\GeneratedValue(strategy: 'AUTO')]
49
        public ?int $id = null,
50

51
        #[ORM\Column(nullable: true)]
52
        public ?\DateTimeImmutable $createdAt = null,
53
    ) {
54
    }
×
55

56
    public function getId(): ?int
57
    {
58
        return $this->id;
×
59
    }
60

61
    public function getCreatedAt(): ?\DateTimeImmutable
62
    {
63
        return $this->createdAt;
×
64
    }
65

66
    public function setCreatedAt(?\DateTimeImmutable $createdAt): void
67
    {
68
        $this->createdAt = $createdAt;
×
69
    }
70
}
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