Completed
Push — master ( 9894be...cc7c8f )
by Tobias
21:38
created

Assert   A

Complexity

Total Complexity 16

Size/Duplication

Total Lines 55
Duplicated Lines 25.45 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 50%

Importance

Changes 0
Metric Value
wmc 16
lcom 1
cbo 1
dl 14
loc 55
ccs 11
cts 22
cp 0.5
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A latitude() 7 7 4
A longitude() 7 7 4
A notNull() 0 6 3
A typeToString() 0 4 2
A float() 0 8 3

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Geocoder package.
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 *
10
 * @license    MIT License
11
 */
12
13
namespace Geocoder;
14
15
use Geocoder\Exception\InvalidArgument;
16
17
class Assert
18
{
19
    /**
20
     * @param float  $value
21
     * @param string $message
22
     */
23 16 View Code Duplication
    public static function latitude($value, string $message = '')
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
24
    {
25 16
        self::float($value, $message);
26
        if ($value < -90 || $value > 90) {
27
            throw new InvalidArgument(sprintf($message ?: 'Latitude should be between -90 and 90. Got: %s', $value));
28
        }
29
    }
30
31 16
    /**
32
     * @param float  $value
33
     * @param string $message
34
     */
35 View Code Duplication
    public static function longitude($value, string $message = '')
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
36 16
    {
37
        self::float($value, $message);
38
        if ($value < -180 || $value > 180) {
39
            throw new InvalidArgument(sprintf($message ?: 'Longitude should be between -180 and 180. Got: %s', $value));
40
        }
41
    }
42 16
43
    /**
44 16
     * @param mixed  $value
45
     * @param string $message
46
     */
47
    public static function notNull($value, string $message = '')
48
    {
49
        if (null === $value) {
50 16
            throw new InvalidArgument(sprintf($message ?: 'Value cannot be null'));
51
        }
52
    }
53
54
    private static function typeToString($value): string
55 16
    {
56
        return is_object($value) ? get_class($value) : gettype($value);
57
    }
58
59
    /**
60
     * @param $value
61 16
     * @param $message
62
     */
63 16
    private static function float($value, string $message)
64
    {
65
        if (!is_float($value)) {
66 16
            throw new InvalidArgument(
67
                sprintf($message ?: 'Expected a float. Got: %s', self::typeToString($value))
68
            );
69
        }
70
    }
71
}
72