mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Change access modifier on _stop() to protected.
This commit is contained in:
parent
94603b2cb7
commit
1d39b93785
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ class Object {
|
||||||
* @param $status see http://php.net/exit for values
|
* @param $status see http://php.net/exit for values
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function _stop($status = 0) {
|
protected function _stop($status = 0) {
|
||||||
exit($status);
|
exit($status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue