Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Drupal\display_builder_entity_view; |
| 6 | |
| 7 | /** |
| 8 | * Provides method to know if Display Builder is enabled. |
| 9 | */ |
| 10 | interface DisplayBuilderEnabledInterface { |
| 11 | |
| 12 | /** |
| 13 | * Determines if Display Builder is enabled. |
| 14 | * |
| 15 | * @return bool |
| 16 | * TRUE if Display Builder is enabled, FALSE otherwise. |
| 17 | */ |
| 18 | public function isDisplayBuilderEnabled(); |
| 19 | |
| 20 | } |
Below are the source code lines that represent each code branch as identified by Xdebug. Please note a branch is not
necessarily coterminous with a line, a line may contain multiple branches and therefore show up more than once.
Please also be aware that some branches may be implicit rather than explicit, e.g. an if statement
always has an else as part of its logical flow even if you didn't write one.