mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix: void unreturn
This commit is contained in:
parent
8d0590c5d1
commit
bececc421d
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue