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.

ConfigurationTest::getConfiguration()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/*
3
* This file is part of the C33s\StaticPageContentBundle.
4
*
5
* (c) consistency <[email protected]>
6
*
7
* For the full copyright and license information, please view the LICENSE
8
* file that was distributed with this source code.
9
*/
10
11
namespace C33s\StaticPageContentBundle\Tests\DependencyInjection;
12
13
use C33s\StaticPageContentBundle\DependencyInjection\Configuration;
14
use Matthias\SymfonyConfigTest\PhpUnit\AbstractConfigurationTestCase;
15
16
class ConfigurationTest extends AbstractConfigurationTestCase
0 ignored issues
show
Deprecated Code introduced by
The class Matthias\SymfonyConfigTe...ctConfigurationTestCase has been deprecated with message: only use this class if you're still running php 5.3. Use
Matthias\SymfonyConfigTest\PhpUnit\ConfigurationTestCaseTrait instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
17
{
18
    protected function getConfiguration()
19
    {
20
        return new Configuration();
21
    }
22
23
    /**
24
     * @test
25
     */
26
    public function itSetsDefaultConfiguration()
27
    {
28
        $this->assertProcessedConfigurationEquals(array(
29
            array()
30
        ), array(
31
            'base_template' => '::base.html.twig',
32
            'content_bundle' => 'C33sStaticPageContentBundle',
33
            'content_dir' => 'Content',
34
            'wrapper_template' => 'C33sStaticPageContentBundle::layout.html.twig',
35
            'template_extension' => '.html.twig',
36
            'use_template_sandbox' => false,
37
            'prefer_locale_templates' => false
38
        ));
39
    }
40
}
41
42