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

violinist-dev / violinist-config / 14551652440

19 Apr 2025 06:11PM UTC coverage: 99.077% (-0.9%) from 100.0%
14551652440

Pull #41

github

eiriksm
phpstan fixes
Pull Request #41: Add methods for finding the correct extend responsible for setting things

61 of 64 new or added lines in 3 files covered. (95.31%)

1 existing line in 1 file now uncovered.

322 of 325 relevant lines covered (99.08%)

35.74 hits per line

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

83.33
/src/ExtendsChainItem.php
1
<?php
2

3
namespace Violinist\Config;
4

5
class ExtendsChainItem
6
{
7
    private $name;
8
    private $key;
9
    private $value;
10

11
    public function __construct(string $extends_name, $key, $value)
12
    {
13
        $this->name = $extends_name;
5✔
14
        $this->key = $key;
5✔
15
        $this->value = $value;
5✔
16
    }
17

18
    public function getName() : string
19
    {
20
        return $this->name;
5✔
21
    }
22
    public function getKey()
23
    {
24
        return $this->key;
5✔
25
    }
26
    public function getValue()
27
    {
NEW
28
        return $this->value;
×
29
    }
30
}
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