Completed
Pull Request — master (#52)
by Eugene
04:03 queued 52s
created

ScriptHandler::validateConfiguration()   C

Complexity

Conditions 7
Paths 7

Size

Total Lines 23
Code Lines 12

Duplication

Lines 6
Ratio 26.09 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 6
loc 23
rs 6.7272
cc 7
eloc 12
nc 7
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