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\Routing\RouteBuilderInterface. | |
| */ | |
| namespace Drupal\Core\Routing; | |
| interface RouteBuilderInterface { | |
| /** | |
| * Rebuilds the route info and dumps to dumper. | |
| * | |
| * @return bool | |
| * Returns TRUE if the rebuild succeeds, FALSE otherwise. | |
| */ | |
| public function rebuild(); | |
| /** | |
| * Rebuilds the route info and dumps to dumper if necessary. | |
| * | |
| * @return bool | |
| * Returns TRUE if the rebuild occurs, FALSE otherwise. | |
| */ | |
| public function rebuildIfNeeded(); | |
| /** | |
| * Sets the router to be rebuilt next time rebuildIfNeeded() is called. | |
| */ | |
| public function setRebuildNeeded(); | |
| } |