Completed
Pull Request — master (#427)
by Michael
03:29
created

ClassWithVoidReturningMethods::__set()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace ProxyManagerTestAsset;
6
7
/**
8
 * Test class used to verify that proxy-manager respects void return types on magic methods
9
 */
10
class ClassWithVoidReturningMethods
11
{
12
    public function __set($name, $value) : void
13
    {
14
    }
15
16
    public function __get($name) : void
17
    {
18
    }
19
20
    public function __isset($name) : void
21
    {
22
    }
23
24
    public function __unset($name) : void
25
    {
26
    }
27
28
    public function __sleep() : void
29
    {
30
    }
31
32
    public function __wakeup() : void
33
    {
34
    }
35
}
36