File: NoSaveCSS.php

package info (click to toggle)
matthiasmullie-minify 1.3.73-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,140 kB
  • sloc: php: 3,198; javascript: 2,083; makefile: 38; xml: 27; sh: 6
file content (13 lines) | stat: -rw-r--r-- 194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace MatthiasMullie\Minify\Tests\CSS;

use MatthiasMullie\Minify\CSS;

class NoSaveCSS extends CSS
{
    protected function save($content, $path)
    {
        // do nothing
    }
}