mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Removing whitespace.
This commit is contained in:
parent
84c8cc3f36
commit
6b2f7f67a6
1 changed files with 4 additions and 4 deletions
|
@ -54,9 +54,9 @@
|
|||
* @subpackage cake.cake.libs
|
||||
*/
|
||||
class CakeLog {
|
||||
|
||||
|
||||
/**
|
||||
* An array of connected streams.
|
||||
* An array of connected streams.
|
||||
* Each stream represents a callable that will be called when write() is called.
|
||||
*
|
||||
* @var array
|
||||
|
@ -125,7 +125,7 @@ class CakeLog {
|
|||
}
|
||||
if (!method_exists($loggerName, 'write')) {
|
||||
trigger_error(
|
||||
sprintf(__('logger class %s does not implement a write method.', true), $loggerName),
|
||||
sprintf(__('logger class %s does not implement a write method.', true), $loggerName),
|
||||
E_USER_WARNING
|
||||
);
|
||||
return false;
|
||||
|
@ -159,7 +159,7 @@ class CakeLog {
|
|||
|
||||
/**
|
||||
* Add a stream the logger.
|
||||
* Streams represent destinations for log messages. Each stream can connect to
|
||||
* Streams represent destinations for log messages. Each stream can connect to
|
||||
* a different resource /interface and capture/write output to that source.
|
||||
*
|
||||
* @param string $key Keyname of config.
|
||||
|
|
Loading…
Reference in a new issue