GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#177)
by Eric
06:31 queued 03:20
created

DayOfWeek   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 17
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
/*
4
 * This file is part of the Ivory Google Map package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Ivory\GoogleMap\Service\Place\Base;
13
14
/**
15
 * @author GeLo <[email protected]>
16
 */
17
final class DayOfWeek
18
{
19
    const SUNDAY = 0;
20
    const MONDAY = 1;
21
    const TUESDAY = 2;
22
    const WEDNESDAY = 3;
23
    const THURSDAY = 4;
24
    const FRIDAY = 5;
25
    const SATURDAY = 6;
26
27
    /**
28
     * @codeCoverageIgnore
29
     */
30
    private function __construct()
31
    {
32
    }
33
}
34