Completed
Push — master ( a4261d...fc5e52 )
by John
14s
created

Installer::install()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 2
b 0
f 1
1
<?php
2
namespace App\Babel\Extension\noj;
3
4
use App\Babel\Install\InstallerBase;
5
use Exception;
6
7
class Installer extends InstallerBase
8
{
9
    public $ocode="noj";
10
11
    public function install()
12
    {
13
        // throw new Exception("No Install Method Provided");
14
        $this->_install($this->ocode);
15
    }
16
17
    public function uninstall()
18
    {
19
        // throw new Exception("No Uninstall Method Provided");
20
        $this->_uninstall($this->ocode);
21
    }
22
}
23