Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
|
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Render\RenderableInterface. | |
| */ | |
| namespace Drupal\Core\Render; | |
| /** | |
| * Defines an object which can be rendered by the Render API. | |
| */ | |
| interface RenderableInterface { | |
| /** | |
| * Returns a render array representation of the object. | |
| * | |
| * @return mixed[] | |
| * A render array. | |
| */ | |
| public function toRenderable(); | |
| } |