fix loader doccomments
authornikic <+@ni-po.com>
Fri, 7 Jan 2011 16:38:36 +0000 (17:38 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 8 Jan 2011 13:34:57 +0000 (14:34 +0100)
lib/Twig/Loader/Array.php
lib/Twig/Loader/Filesystem.php
lib/Twig/Loader/String.php
lib/Twig/LoaderInterface.php

index 8b74310..8c8798a 100644 (file)
@@ -42,7 +42,7 @@ class Twig_Loader_Array implements Twig_LoaderInterface
     /**
      * Gets the source code of a template, given its name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The template source code
      */
@@ -58,7 +58,7 @@ class Twig_Loader_Array implements Twig_LoaderInterface
     /**
      * Gets the cache key to use for the cache for a given template name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The cache key
      */
index 8ba22b2..d0f26d9 100644 (file)
@@ -67,7 +67,7 @@ class Twig_Loader_Filesystem implements Twig_LoaderInterface
     /**
      * Gets the source code of a template, given its name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The template source code
      */
@@ -79,7 +79,7 @@ class Twig_Loader_Filesystem implements Twig_LoaderInterface
     /**
      * Gets the cache key to use for the cache for a given template name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The cache key
      */
@@ -103,7 +103,7 @@ class Twig_Loader_Filesystem implements Twig_LoaderInterface
     {
         // normalize name
         $name = preg_replace('#/{2,}#', '/', strtr($name, '\\', '/'));
-        
+
         if (isset($this->cache[$name])) {
             return $this->cache[$name];
         }
index 1a3c357..0593a72 100644 (file)
@@ -25,7 +25,7 @@ class Twig_Loader_String implements Twig_LoaderInterface
     /**
      * Gets the source code of a template, given its name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The template source code
      */
@@ -37,7 +37,7 @@ class Twig_Loader_String implements Twig_LoaderInterface
     /**
      * Gets the cache key to use for the cache for a given template name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The cache key
      */
index c4e9d96..ef4adc4 100644 (file)
@@ -20,7 +20,7 @@ interface Twig_LoaderInterface
     /**
      * Gets the source code of a template, given its name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The template source code
      */
@@ -29,7 +29,7 @@ interface Twig_LoaderInterface
     /**
      * Gets the cache key to use for the cache for a given template name.
      *
-     * @param  string $name string The name of the template to load
+     * @param  string $name The name of the template to load
      *
      * @return string The cache key
      */