Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| Symfony | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| execute | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Service\ApplicationInfo; |
| 4 | |
| 5 | class Symfony extends Php |
| 6 | { |
| 7 | public function execute(): void |
| 8 | { |
| 9 | $this->testVersion(); |
| 10 | $this->testExtensions($this->requiredextensions); |
| 11 | $this->envReport(); |
| 12 | $this->testDirectory(); |
| 13 | $this->testDB($this->env['APP_DATABASE_URL'], 'SELECT * FROM parameter'); |
| 14 | } |
| 15 | } |