소스 검색

[FormatAbstract] Allow child classes to overwrite DEFAULT_CHARSET

By using 'static' instead of 'self' the constant may
be overridden by child classes.
logmanoriginal 7 년 전
부모
커밋
4f4fb11789
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/FormatAbstract.php

+ 1 - 1
lib/FormatAbstract.php

@@ -18,7 +18,7 @@ abstract class FormatAbstract implements FormatInterface {
 	public function getCharset(){
 		$charset = $this->charset;
 
-		return is_null($charset) ? self::DEFAULT_CHARSET : $charset;
+		return is_null($charset) ? static::DEFAULT_CHARSET : $charset;
 	}
 
 	protected function setContentType($contentType){