X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=vendor%2Fsymfony%2Fhttp-kernel%2FTests%2FLogger.php;h=63c70bf67aa82ec508e0eff9ce3163e52e15e20d;hb=9e65bae52407293a5182f19dc57b5628b09e92f4;hp=54300960d3fe429f9fc7f9b14104357d2b58ee7e;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/symfony/http-kernel/Tests/Logger.php b/vendor/symfony/http-kernel/Tests/Logger.php index 54300960d..63c70bf67 100644 --- a/vendor/symfony/http-kernel/Tests/Logger.php +++ b/vendor/symfony/http-kernel/Tests/Logger.php @@ -85,44 +85,4 @@ class Logger implements LoggerInterface { $this->log('debug', $message, $context); } - - /** - * @deprecated - */ - public function emerg($message, array $context = array()) - { - @trigger_error('Use emergency() which is PSR-3 compatible', E_USER_DEPRECATED); - - $this->log('emergency', $message, $context); - } - - /** - * @deprecated - */ - public function crit($message, array $context = array()) - { - @trigger_error('Use critical() which is PSR-3 compatible', E_USER_DEPRECATED); - - $this->log('critical', $message, $context); - } - - /** - * @deprecated - */ - public function err($message, array $context = array()) - { - @trigger_error('Use error() which is PSR-3 compatible', E_USER_DEPRECATED); - - $this->log('error', $message, $context); - } - - /** - * @deprecated - */ - public function warn($message, array $context = array()) - { - @trigger_error('Use warning() which is PSR-3 compatible', E_USER_DEPRECATED); - - $this->log('warning', $message, $context); - } }