Helper.php 369 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Base helper file.
  4. *
  5. * Provides an empty helper.
  6. *
  7. * @author Iñigo Valentin <i@inigovalentin.com>
  8. * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
  9. * @package SWDB
  10. */
  11. /**
  12. * Helper superclass.
  13. *
  14. * Every other entity must inherit from this one.
  15. *
  16. * @abstract
  17. * @category Helper
  18. */
  19. abstract class Helper{}