matthiasmullie / minify
Showing 1 of 2 files from the diff.
Newly tracked file
src/CSS.php changed.
Other files ignored by Codecov

@@ -740,7 +740,7 @@
Loading
740 740
        // PHP only supports $this inside anonymous functions since 5.4
741 741
        $minifier = $this;
742 742
        $this->registerPattern(
743 -
            '/(?<=^|[;}])(--[^:;{}"\'\s]+)\s*:([^;{}]+)/m',
743 +
            '/(?<=^|[;}])\s*(--[^:;{}"\'\s]+)\s*:([^;{}]+)/m',
744 744
            function ($match) use ($minifier) {
745 745
                $placeholder = '--custom-'. count($minifier->extracted) . ':0';
746 746
                $minifier->extracted[$placeholder] = $match[1] .':'. trim($match[2]);
Files Complexity Coverage
src 118 99.56%
Project Totals (3 files) 118 99.56%

No yaml found.

Create your codecov.yml to customize your Codecov experience

Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading