浏览代码

fixed inteface name

Laszlo Korte 14 年之前
父节点
当前提交
7ec7fbefaa
共有 1 个文件被更改,包括 1 次插入1 次删除
  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);
     }
 
     /**