mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixing constructor of CakeCliReporter to match CakeBaseReporter.
This commit is contained in:
parent
980a85cec4
commit
9989327b5b
1 changed files with 2 additions and 5 deletions
|
@ -55,11 +55,8 @@ class CakeCliReporter extends CakeBaseReporter {
|
|||
* @param array $params
|
||||
* @return void
|
||||
*/
|
||||
function CakeCLIReporter($separator = NULL, $params = array()) {
|
||||
$this->CakeBaseReporter('utf-8', $params);
|
||||
if (!is_null($separator)) {
|
||||
$this->setFailDetailSeparator($separator);
|
||||
}
|
||||
function CakeCLIReporter($charset = 'utf-8', $params = array()) {
|
||||
$this->CakeBaseReporter($charset, $params);
|
||||
}
|
||||
|
||||
function setFailDetailSeparator($separator) {
|
||||
|
|
Loading…
Reference in a new issue