Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / http-kernel / Tests / Logger.php
index 54300960d3fe429f9fc7f9b14104357d2b58ee7e..63c70bf67aa82ec508e0eff9ce3163e52e15e20d 100644 (file)
@@ -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);
-    }
 }