Passed
Push — master ( 8f94e1...adfcdc )
by Chema
01:29 queued 13s
created

Facade   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 2
1
<?php
2
3
declare(strict_types = 1);
4
5
namespace GacelaTest\Feature\Framework\ResolveDifferentProjectNamespaces\vendor\ThirdParty\ModuleA;
6
7
use Gacela\Framework\AbstractFacade;
8
9
/**
10
 * @method Factory getFactory()
11
 */
12
class Facade extends AbstractFacade
13
{
14
    public function stringValueA1(): string
15
    {
16
        return $this->getFactory()
17
            ->createStringA1()
18
            ->value();
19
    }
20
21
    public function stringValueA2(): string
22
    {
23
        return $this->getFactory()
24
            ->createStringA2()
25
            ->value();
26
    }
27
}
28