Completed
Push — master ( 3a3730...3061b5 )
by Nikita
04:26
created

App   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
A connectBundles() 0 3 1
1
<?php
2
3
namespace Taisiya\CoreBundle;
4
5
final class App extends \Slim\App
6
{
7
    /**
8
     * {@inheritdoc}
9
     */
10
    public function __construct($container = [])
11
    {
12
        parent::__construct($container);
13
14
        $this->connectBundles();
0 ignored issues
show
Unused Code introduced by
The call to the method Taisiya\CoreBundle\App::connectBundles() seems un-needed as the method has no side-effects.

PHP Analyzer performs a side-effects analysis of your code. A side-effect is basically anything that might be visible after the scope of the method is left.

Let’s take a look at an example:

class User
{
    private $email;

    public function getEmail()
    {
        return $this->email;
    }

    public function setEmail($email)
    {
        $this->email = $email;
    }
}

If we look at the getEmail() method, we can see that it has no side-effect. Whether you call this method or not, no future calls to other methods are affected by this. As such code as the following is useless:

$user = new User();
$user->getEmail(); // This line could safely be removed as it has no effect.

On the hand, if we look at the setEmail(), this method _has_ side-effects. In the following case, we could not remove the method call:

$user = new User();
$user->setEmail('email@domain'); // This line has a side-effect (it changes an
                                 // instance variable).
Loading history...
15
    }
16
17
    final private function connectBundles(): void
0 ignored issues
show
Coding Style introduced by
Unnecessary FINAL modifier in FINAL class
Loading history...
18
    {
19
    }
20
}
21