Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| <?php | |
| namespace Bone\View; | |
| interface ViewAwareInterface | |
| { | |
| /** | |
| * @param ViewEngineInterface $view | |
| */ | |
| public function setView(ViewEngineInterface $view): void; | |
| /** | |
| * @return ViewEngineInterface | |
| */ | |
| public function getView(): ViewEngineInterface; | |
| } |