Completed
Push — master ( aa5756...106423 )
by Andrii
11:44
created

Travis   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConfiguration() 0 4 1
1
<?php
2
3
namespace hidev\travis\components;
4
5
/**
6
 * Travis CI.
7
 * @author Andrii Vasyliev <[email protected]>
8
 */
9
class Travis extends \hidev\base\Component
10
{
11
    public $before_install;
12
    public $install;
13
    public $before_script;
14
    public $script;
15
    public $after_success;
16
    public $after_failure;
17
    public $after_script;
18
19
    public function getConfiguration()
20
    {
21
        return $this->take('.travis.yml');
22
    }
23
}
24