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

ScriptHandler   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 4
Bugs 1 Features 0
Metric Value
wmc 1
c 4
b 1
f 0
lcom 0
cbo 1
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A compileCSS() 0 4 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