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

MyIntervals / PHP-CSS-Parser / 12996244771

27 Jan 2025 06:56PM UTC coverage: 51.041%. Remained the same
12996244771

push

github

web-flow
[CLEANUP] Avoid Hungarian notation for `iLineNo` (#833)

Part of #756

30 of 79 new or added lines in 25 files covered. (37.97%)

1 existing line in 1 file now uncovered.

1054 of 2065 relevant lines covered (51.04%)

10.55 hits per line

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

0.0
/src/Value/RuleValueList.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace Sabberworm\CSS\Value;
6

7
/**
8
 * This class is used to represent all multivalued rules like `font: bold 12px/3 Helvetica, Verdana, sans-serif;`
9
 * (where the value would be a whitespace-separated list of the primitive value `bold`, a slash-separated list
10
 * and a comma-separated list).
11
 */
12
class RuleValueList extends ValueList
13
{
14
    /**
15
     * @param string $sSeparator
16
     * @param int $lineNumber
17
     */
NEW
18
    public function __construct($sSeparator = ',', $lineNumber = 0)
×
19
    {
NEW
20
        parent::__construct([], $sSeparator, $lineNumber);
×
21
    }
×
22
}
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