Completed
Push — master ( 29fb7d...cbd3fd )
by Eugene
27s
created

ScriptHandler::compileCSS()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 4
Bugs 1 Features 0
Metric Value
c 4
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace EM\CssCompiler\Handler;
4
5
use Composer\Script\Event;
6
use EM\CssCompiler\ScriptHandler as Handler;
7
8
/**
9
 * @deprecated
10
 */
11
class ScriptHandler extends Handler
12
{
13
    public static function compileCSS(Event $event)
14
    {
15
        static::generateCSS($event);
16
    }
17
}
18