Completed
Pull Request — master (#80)
by John
03:11
created

Meh   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php declare(strict_types = 1);
2
/*
3
 * This file is part of the KleijnWeb\SwaggerBundle package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
9
namespace KleijnWeb\SwaggerBundle\Tests\Serialize\Serializer\Stubs;
10
11
class Meh
12
{
13
    /**
14
     * @var mixed
15
     */
16
    private $c;
17
18
    /**
19
     * Meh constructor.
20
     *
21
     * @param mixed $c
22
     */
23
    public function __construct($c)
24
    {
25
        $this->c = $c;
26
    }
27
}
28