Ver Fonte

fixed inteface name

Laszlo Korte há 14 anos atrás
pai
commit
7ec7fbefaa

+ 1 - 1
src/Symfony/Component/Console/Formatter/OutputFormatter.php

@@ -125,7 +125,7 @@ class OutputFormatter implements OutputFormatterInterface
      */
     public function format($message)
     {
-        return preg_replace_callback(OutputFormatterStyleInterface::FORMAT_PATTERN, array($this, 'replaceStyle'), $message);
+        return preg_replace_callback(OutputFormatterInterface::FORMAT_PATTERN, array($this, 'replaceStyle'), $message);
     }
 
     /**