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

onmoon / openapi-server-bundle / 15881876638

25 Jun 2025 04:28PM UTC coverage: 80.585% (-0.5%) from 81.095%
15881876638

Pull #196

github

web-flow
Merge 90ce8070d into c35fba5f2
Pull Request #196: Fix minimum versions install

9 of 29 new or added lines in 5 files covered. (31.03%)

44 existing lines in 12 files now uncovered.

1378 of 1710 relevant lines covered (80.58%)

3.8 hits per line

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

66.67
/src/Specification/Definitions/ObjectSchema.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace OnMoon\OpenApiServerBundle\Specification\Definitions;
6

7
final class ObjectSchema implements GetSchema
8
{
9
    /** @var Property[] $properties; */
10
    private array $properties;
11

12
    /** @param Property[] $properties */
13
    public function __construct(array $properties)
14
    {
15
        $this->properties = $properties;
1✔
16
    }
17

18
    /** @return Property[] */
19
    public function getProperties(): array
20
    {
21
        return $this->properties;
1✔
22
    }
23

24
    public function getSchema(): ObjectSchema
25
    {
UNCOV
26
        return $this;
×
27
    }
28
}
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