mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-07 12:36:25 +00:00
ignore last few silencers for code sniffer
This commit is contained in:
parent
a8eca60fc5
commit
74836a1c30
1 changed files with 4 additions and 0 deletions
|
@ -1314,7 +1314,9 @@ class CakeResponse {
|
||||||
* @return boolean
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
protected function _clearBuffer() {
|
protected function _clearBuffer() {
|
||||||
|
//@codingStandardsIgnoreStart
|
||||||
return @ob_end_clean();
|
return @ob_end_clean();
|
||||||
|
//@codingStandardsIgnoreEnd
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1323,8 +1325,10 @@ class CakeResponse {
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
protected function _flushBuffer() {
|
protected function _flushBuffer() {
|
||||||
|
//@codingStandardsIgnoreStart
|
||||||
@flush();
|
@flush();
|
||||||
@ob_flush();
|
@ob_flush();
|
||||||
|
//@codingStandardsIgnoreEnd
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue