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.
Passed
Pull Request — master (#56)
by Issei
02:22
created

NoMoreItemsSpec   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
1
<?php
2
3
namespace spec\DusanKasan\Knapsack\Exceptions;
4
5
use DusanKasan\Knapsack\Exceptions\NoMoreItems;
6
use DusanKasan\Knapsack\Exceptions\RuntimeException;
7
use PhpSpec\ObjectBehavior;
8
use Prophecy\Argument;
9
10
/**
11
 * @mixin NoMoreItems
12
 */
13
class NoMoreItemsSpec extends ObjectBehavior
14
{
15
    function it_is_initializable()
16
    {
17
        $this->shouldHaveType(RuntimeException::class);
18
    }
19
}
20