mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Refactor code to not use extract()/compact()
This commit is contained in:
parent
8eb5ce410a
commit
47526e8b4d
1 changed files with 10 additions and 5 deletions
|
@ -1065,16 +1065,21 @@ class CakeEmail {
|
|||
|
||||
$contents = $this->transportClass()->send($this);
|
||||
if (!empty($this->_config['log'])) {
|
||||
$level = LOG_DEBUG;
|
||||
$scope = 'email';
|
||||
$config = array(
|
||||
'level' => LOG_DEBUG,
|
||||
'scope' => 'email'
|
||||
);
|
||||
if ($this->_config['log'] !== true) {
|
||||
if (!is_array($this->_config['log'])) {
|
||||
$this->_config['log'] = array('level' => $this->_config['log']);
|
||||
}
|
||||
$this->_config['log'] = array_merge(compact('level', 'scope'), $this->_config['log']);
|
||||
extract($this->_config['log']);
|
||||
$config = array_merge($config, $this->_config['log']);
|
||||
}
|
||||
CakeLog::write($level, PHP_EOL . $contents['headers'] . PHP_EOL . $contents['message'], $scope);
|
||||
CakeLog::write(
|
||||
$config['level'],
|
||||
PHP_EOL . $contents['headers'] . PHP_EOL . $contents['message'],
|
||||
$config['scope']
|
||||
);
|
||||
}
|
||||
return $contents;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue