Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class Address extends Model |
||
8 | { |
||
9 | public function ping() |
||
12 | } |
||
13 | |||
14 | public function update() |
||
15 | { |
||
16 | return PhpIPAM::addressUpdate($this, $this->except($this->getExceptKeys())); |
||
17 | } |
||
18 | |||
19 | public function drop() |
||
20 | { |
||
21 | return PhpIPAM::addressDrop($this); |
||
22 | } |
||
23 | |||
24 | public function getExceptKeys() |
||
33 | ]; |
||
34 | } |
||
35 | } |
||
36 |