Total Complexity | 6 |
Total Lines | 59 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class MegaTestDependantClass |
||
10 | { |
||
11 | const INT_VALUE = 1337; |
||
12 | |||
13 | /** |
||
14 | * @var AwesomeTestDependencyClass |
||
15 | */ |
||
16 | private $awesome; |
||
17 | |||
18 | /** |
||
19 | * @var ContainerInterface |
||
20 | */ |
||
21 | private $container; |
||
22 | |||
23 | /** |
||
24 | * @var int |
||
25 | */ |
||
26 | private $intValue = self::INT_VALUE; |
||
27 | |||
28 | public function setSomeWeiredSetterName(AwesomeTestDependencyClass $weiredObject) |
||
29 | { |
||
30 | $this->awesome = $weiredObject; |
||
31 | } |
||
32 | |||
33 | public function setContainer(ContainerInterface $container) |
||
34 | { |
||
35 | $this->container = $container; |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @return AwesomeTestDependencyClass |
||
40 | */ |
||
41 | public function getAwesome() |
||
42 | { |
||
43 | return $this->awesome; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * @return ContainerInterface |
||
48 | */ |
||
49 | public function getContainer() |
||
50 | { |
||
51 | return $this->container; |
||
52 | } |
||
53 | |||
54 | /** |
||
55 | * @return int |
||
56 | */ |
||
57 | public function getIntValue(): int |
||
60 | } |
||
61 | |||
62 | /** |
||
63 | * @param int $intValue |
||
64 | */ |
||
65 | public function setIntValue(int $intValue) |
||
68 | } |
||
69 | } |