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

Travis::getConfiguration()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
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