diff --git a/cake/libs/view/helpers/session.php b/cake/libs/view/helpers/session.php index 4e87f85a7e6..776334455bd 100644 --- a/cake/libs/view/helpers/session.php +++ b/cake/libs/view/helpers/session.php @@ -116,4 +116,32 @@ public function flash($key = 'flash') { public function valid() { return CakeSession::valid(); } + +/** + * stub method to make helper less complainey + * + * @return void + */ + public function beforeRender() { } + +/** + * stub method to make helper less complainey + * + * @return void + */ + public function beforeLayout() { } + +/** + * stub method to make helper less complainey + * + * @return void + */ + public function afterRender() { } + +/** + * stub method to make helper less complainey + * + * @return void + */ + public function afterLayout() { } }