Remove unnecessary @implements annotations.
This commit is contained in:
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user