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.

SetupScriptBehavior   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A afterApplyAllUpdates() 0 4 1
1
<?php
2
/**
3
 * MageSpec
4
 *
5
 * NOTICE OF LICENSE
6
 *
7
 * This source file is subject to the MIT License, that is bundled with this
8
 * package in the file LICENSE.
9
 * It is also available through the world-wide-web at this URL:
10
 *
11
 * http://opensource.org/licenses/MIT
12
 *
13
 * If you did not receive a copy of the license and are unable to obtain it
14
 * through the world-wide-web, please send an email
15
 * to <[email protected]> so we can send you a copy immediately.
16
 *
17
 * @category   MageTest
18
 * @package    PhpSpec_MagentoExtension
19
 * @subpackage Specification
20
 *
21
 * @copyright  Copyright (c) 2012-2013 MageTest team and contributors.
22
 */
23
namespace MageTest\PhpSpec\MagentoExtension\Specification;
24
25
/**
26
 * SetupScriptBehavior
27
 *
28
 * @category   MageTest
29
 * @package    PhpSpec_MagentoExtension
30
 * @subpackage Specification
31
 *
32
 * @author     MageTest team (https://github.com/MageTest/MageSpec/contributors)
33
 */
34
class SetupScriptBehavior
35
{
36
	public function afterApplyAllUpdates($spec)
37
	{
38
        $spec();
39
	}
40
}