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 (#55)
by Simone
03:04
created

testTransformSnakeCaseStringInTokens()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
use Mado\QueryBundle\Services\StringParser;
4
use PHPUnit\Framework\TestCase;
5
6
class StringParserTest extends TestCase
7
{
8
    public function testTransformSnakeCaseStringInTokens()
9
    {
10
        $this->parser = new StringParser();
0 ignored issues
show
Bug Best Practice introduced by
The property parser does not exist. Although not strictly required by PHP, it is generally a best practice to declare properties explicitly.
Loading history...
11
12
        $this->assertEquals(
13
            'fizzBuzzFooBar',
14
            $this->parser->camelize('fizz_buzz_foo_bar')
15
        );
16
    }
17
}
18