Selaa lähdekoodia

fixed inteface name

Laszlo Korte 14 vuotta sitten
vanhempi
commit
7ec7fbefaa
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/Symfony/Component/Console/Formatter/OutputFormatter.php

+ 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);
     }
 
     /**