Completed
Pull Request — master (#1)
by Jeroen van
01:46 queued 23s
created

InvalidLongitudeFormatException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
crap 1
1
<?php
2
namespace Ballen\Distical\Exceptions;
3
4
/**
5
 * Distical
6
 *
7
 * Distical is a simple distance calculator library for PHP 5.3+ which
8
 * amongst other things can calculate the distance between two or more lat/long
9
 * co-ordinates.
10
 *
11
 * @author Bobby Allen <[email protected]>
12
 * @license http://opensource.org/licenses/MIT
13
 * @link https://github.com/allebb/distical
14
 * @link http://bobbyallen.me
15
 *
16
 */
17
class InvalidLongitudeFormatException extends \Exception
18
{
19
}
20