Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
27 | 2 | public function __construct(string $providerName, string $entityName, array $parameters, ?string $entityDescription = null) |
|
28 | { |
||
29 | 2 | $this->providerName = $providerName; |
|
30 | 2 | $this->entityName = $entityName; |
|
31 | 2 | $this->entityDescription = $entityDescription ? '(' . $entityDescription . ')' : ''; |
|
32 | 2 | $this->parameters = $parameters; |
|
33 | } |
||
34 | |||
67 |