bracket on a new line
Also add space after foreach
bracket on a new line... Also add a space after if
Follow up from https://github.com/EllisLab/CodeIgniter/pull/1234/files#r630522
diff --git a/system/core/Output.php b/system/core/Output.php
index 673ceb0..c0de24b 100755
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -231,12 +231,13 @@
*/
public function get_current_content_type()
{
- foreach($this->headers as $header){
- if(preg_match('/^Content-Type/', $header[0])){
- return str_replace('Content-Type: ', '', $header[0]);
- }
+ foreach ($this->headers as $header){
+ if (preg_match('/^Content-Type/', $header[0]))
+ {
+ return str_replace('Content-Type: ', '', $header[0]);
}
- return 'text/html';
+ }
+ return 'text/html';
}
// --------------------------------------------------------------------