Completed
Push — master ( dde429...22637e )
by Andrii
20:00
created

InstallGoal::detectBin()   B

Complexity

Conditions 5
Paths 6

Size

Total Lines 24
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 30

Importance

Changes 2
Bugs 1 Features 0
Metric Value
c 2
b 1
f 0
dl 0
loc 24
ccs 0
cts 14
cp 0
rs 8.5126
cc 5
eloc 9
nc 6
nop 1
crap 30
1
<?php
2
3
/*
4
 * Task runner, code generator and build tool for easier continuos integration
5
 *
6
 * @link      https://github.com/hiqdev/hidev
7
 * @package   hidev
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2014-2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hidev\goals;
13
14
use Yii;
15
16
/**
17
 * Install goal.
18
 */
19
class InstallGoal extends DefaultGoal
20
{
21
    public function actionMake()
22
    {
23
        Yii::warning('install');
24
    }
25
}
26