FormatResponseException   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 3
c 1
b 0
f 1
dl 0
loc 9
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getName() 0 2 1
A __toString() 0 3 1
1
<?php
2
3
4
namespace talismanfr\geocode\exeptions;
5
6
7
class FormatResponseException extends \Exception
8
{
9
    public function getName(){
10
        return 'Error Format Response';
11
    }
12
13
    public function __toString()
14
    {
15
        parent::__toString();
16
    }
17
}