gacela-project /
gacela
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace GacelaTest\Benchmark\ModuleExample; |
||
| 6 | |||
| 7 | use Gacela\Framework\AbstractFacade; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @extends AbstractFacade<ModuleExampleFactory> |
||
| 11 | */ |
||
| 12 | final class ModuleExampleFacade extends AbstractFacade |
||
| 13 | { |
||
| 14 | public function getConfigValues(): array |
||
| 15 | { |
||
| 16 | return $this->getFactory() |
||
| 17 | ->createDomainClass() |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 18 | ->getConfigValues(); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getValueFromAbstractProvider(): string |
||
| 22 | { |
||
| 23 | return $this->getFactory() |
||
| 24 | ->createDomainClass() |
||
| 25 | ->getValueFromAbstractProvider(); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |