Completed
Push — master ( 75748b...36048b )
by Michael
06:58
created

CorpSection::getActive()   A

Complexity

Conditions 2
Paths 3

Size

Total Lines 20
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Importance

Changes 5
Bugs 0 Features 4
Metric Value
c 5
b 0
f 4
dl 0
loc 20
rs 9.4285
cc 2
eloc 17
nc 3
nop 0
1
<?php
2
/**
3
 * Contains CorpSection class.
4
 *
5
 * PHP version 5.4
6
 *
7
 * LICENSE:
8
 * This file is part of Yet Another Php Eve Api Library also know as Yapeal which can be used to access the Eve Online
9
 * API data and place it into a database.
10
 * Copyright (C) 2015-2016 Michael Cummings
11
 *
12
 * This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
13
 * Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
14
 * any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
17
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18
 * details.
19
 *
20
 * You should have received a copy of the GNU Lesser General Public License along with this program. If not, see
21
 * <http://www.gnu.org/licenses/>.
22
 *
23
 * You should be able to find a copy of this license in the LICENSE.md file. A copy of the GNU GPL should also be
24
 * available in the GNU-GPL.md file.
25
 *
26
 * @copyright 2015-2016 Michael Cummings
27
 * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
28
 * @author    Michael Cummings <[email protected]>
29
 */
30
namespace Yapeal\EveApi\Corp;
31
32
use Yapeal\EveApi\ActiveTrait;
33
use Yapeal\EveApi\CommonEveApiTrait;
34
35
/**
36
 * Class CorpSection
37
 */
38
class CorpSection
0 ignored issues
show
Bug introduced by
There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: getCsq, getPdo
Loading history...
39
{
40
    use ActiveTrait, CommonEveApiTrait;
41
    /**
42
     * CorpSection constructor.
43
     */
44
    public function __construct()
45
    {
46
        // Place holder.
47
    }
48
}
49