Fix: void unreturn

This commit is contained in:
LustyRain 2017-10-02 15:40:48 +09:00
parent 8d0590c5d1
commit bececc421d

View file

@ -153,7 +153,7 @@ class SessionComponent extends Component {
* @return void
*/
public function renew() {
return CakeSession::renew();
CakeSession::renew();
}
/**
@ -176,7 +176,7 @@ class SessionComponent extends Component {
* @link https://book.cakephp.org/2.0/en/core-libraries/components/sessions.html#SessionComponent::destroy
*/
public function destroy() {
return CakeSession::destroy();
CakeSession::destroy();
}
/**