Browse Source

Remove unnecessary @implements annotations.

Justin Hileman 13 years ago
parent
commit
59020c2e4f

+ 0 - 3
src/Mustache/Loader/ArrayLoader.php

@@ -23,9 +23,6 @@
  *
  *
  * The ArrayLoader is used internally as a partials loader by Mustache_Engine instance when an array of partials
  * The ArrayLoader is used internally as a partials loader by Mustache_Engine instance when an array of partials
  * is set. It can also be used as a quick-and-dirty Template loader.
  * is set. It can also be used as a quick-and-dirty Template loader.
- *
- * @implements Loader
- * @implements MutableLoader
  */
  */
 class Mustache_Loader_ArrayLoader implements Mustache_Loader, Mustache_Loader_MutableLoader
 class Mustache_Loader_ArrayLoader implements Mustache_Loader, Mustache_Loader_MutableLoader
 {
 {

+ 0 - 2
src/Mustache/Loader/FilesystemLoader.php

@@ -23,8 +23,6 @@
  *          'loader'          => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views'),
  *          'loader'          => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views'),
  *          'partials_loader' => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views/partials'),
  *          'partials_loader' => new Mustache_Loader_FilesystemLoader(dirname(__FILE__).'/views/partials'),
  *     ));
  *     ));
- *
- * @implements Mustache_Loader
  */
  */
 class Mustache_Loader_FilesystemLoader implements Mustache_Loader
 class Mustache_Loader_FilesystemLoader implements Mustache_Loader
 {
 {

+ 0 - 2
src/Mustache/Loader/StringLoader.php

@@ -22,8 +22,6 @@
  *     $m = new Mustache;
  *     $m = new Mustache;
  *     $tpl = $m->loadTemplate('{{ foo }}');
  *     $tpl = $m->loadTemplate('{{ foo }}');
  *     echo $tpl->render(array('foo' => 'bar')); // "bar"
  *     echo $tpl->render(array('foo' => 'bar')); // "bar"
- *
- * @implements Loader
  */
  */
 class Mustache_Loader_StringLoader implements Mustache_Loader
 class Mustache_Loader_StringLoader implements Mustache_Loader
 {
 {