Browse Source

Merge pull request #1014 from ceeram/phpcs

ignore last few silencers for code sniffer
ceeram 13 years ago
parent
commit
1516434d61
1 changed files with 4 additions and 0 deletions
  1. 4 0
      lib/Cake/Network/CakeResponse.php

+ 4 - 0
lib/Cake/Network/CakeResponse.php

@@ -1314,7 +1314,9 @@ class CakeResponse {
  * @return boolean
  */
 	protected function _clearBuffer() {
+		//@codingStandardsIgnoreStart
 		return @ob_end_clean();
+		//@codingStandardsIgnoreEnd
 	}
 
 /**
@@ -1323,8 +1325,10 @@ class CakeResponse {
  * @return void
  */
 	protected function _flushBuffer() {
+		//@codingStandardsIgnoreStart
 		@flush();
 		@ob_flush();
+		//@codingStandardsIgnoreEnd
 	}
 
 }