This change adds an empty function to observe method
requirements set by the interface.
Thanks to Jay Dinse for reporting!
Change-Id: Ie2551cbccfe8eb6d5afb6f9490107b254f38d4a6
Fixes: #28966
*/
public function __call($methodName, array $arguments) {
}
*/
public function __call($methodName, array $arguments) {
}
+
+ /**
+ * Initializes this view.
+ *
+ * Override this method for initializing your concrete view implementation.
+ *
+ * @return void
+ * @api
+ */
+ public function initializeView() {
+ }
}
?>
\ No newline at end of file
}
?>
\ No newline at end of file