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

violinist-dev / violinist-config / 14551699093

19 Apr 2025 06:17PM UTC coverage: 99.083% (-0.9%) from 100.0%
14551699093

Pull #41

github

eiriksm
Also test non extended
Pull Request #41: Add methods for finding the correct extend responsible for setting things

63 of 66 new or added lines in 3 files covered. (95.45%)

1 existing line in 1 file now uncovered.

324 of 327 relevant lines covered (99.08%)

35.92 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;
6✔
14
        $this->key = $key;
6✔
15
        $this->value = $value;
6✔
16
    }
17

18
    public function getName() : string
19
    {
20
        return $this->name;
6✔
21
    }
22
    public function getKey()
23
    {
24
        return $this->key;
6✔
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