Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
EmptyDashboard | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__toString | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\Cms; |
3 | |
4 | use Stringable; |
5 | |
6 | class EmptyDashboard implements Stringable |
7 | { |
8 | public function __toString(): string |
9 | { |
10 | return ''; |
11 | } |
12 | } |