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
Push — master ( 8ed6f1...ecc169 )
by Rodrigue
03:16
created

Gorilla   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setBanana() 0 4 1
A getBanana() 0 4 1
1
<?php
2
3
namespace Gorghoa\ScenarioStateBehatExtension\TestApp;
4
5
/*
6
 * This file is part of the ScenarioStateBehatExtension project.
7
 *
8
 * (c) Rodrigue Villetard <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
/**
15
 * @author Rodrigue Villetard <[email protected]>
16
 */
17
class Gorilla
18
{
19
    private $banana;
20
21
    /**
22
     * @param string $banana
23
     */
24
    public function setBanana($banana)
25
    {
26
        $this->banana = $banana;
27
    }
28
29
    public function getBanana()
30
    {
31
        return $this->banana;
32
    }
33
}
34