mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Removing inheritance on Object as Dispatcher has no use for the inherited methods.
Removing flush() call as it was causing the test suite to not display anything.
This commit is contained in:
parent
dae14ac72b
commit
3e6cd0be44
1 changed files with 1 additions and 2 deletions
|
@ -36,7 +36,7 @@ App::import('Controller', 'Controller', false);
|
|||
* @package cake
|
||||
* @subpackage cake.cake
|
||||
*/
|
||||
class Dispatcher extends Object {
|
||||
class Dispatcher {
|
||||
|
||||
/**
|
||||
* Base URL
|
||||
|
@ -409,7 +409,6 @@ class Dispatcher extends Object {
|
|||
include($assetFile);
|
||||
} else {
|
||||
ob_clean();
|
||||
flush();
|
||||
readfile($assetFile);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue