浏览代码

[DependencyInjection] Removed the public keyword from interface

Christophe Coevoet 14 年之前
父节点
当前提交
a54d6b7e58
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php

+ 2 - 2
src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBagInterface.php

@@ -70,7 +70,7 @@ interface ParameterBagInterface
     /**
     /**
      * Replaces parameter placeholders (%name%) by their values for all parameters.
      * Replaces parameter placeholders (%name%) by their values for all parameters.
      */
      */
-    public function resolve();
+    function resolve();
 
 
     /**
     /**
      * Replaces parameter placeholders (%name%) by their values.
      * Replaces parameter placeholders (%name%) by their values.
@@ -79,5 +79,5 @@ interface ParameterBagInterface
      *
      *
      * @throws NonExistentParameterException if a placeholder references a parameter that does not exist
      * @throws NonExistentParameterException if a placeholder references a parameter that does not exist
      */
      */
-    public function resolveValue($value);
+    function resolveValue($value);
 }
 }