Sequenzia/lib/Rails/ActionView/Helper/Base.php
2013-10-02 11:14:53 -05:00

18 lines
588 B
PHP
Executable File

<?php
namespace Rails\ActionView\Helper;
/**
* This class shouldn't be extended.
* Having all these methods in a separed class will make
* possible to override them in other helpers.
* Calling one of these methods within a method with the same name
* can be done by calling base(), which will return the instance of
* this class.
*/
class Base extends \Rails\ActionView\Helper
{
use Methods\Form, Methods\Date, Methods\FormTag, Methods\Header,
Methods\Html, Methods\Number, Methods\Tag, Methods\Text,
Methods\JavaScript, Methods\Inflections, Methods\Assets;
}