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

Meh::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 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