stub.php 233 B

12345678910111213141516171819202122232425
  1. <?php
  2. class {{class}} {
  3. /**
  4. * Make changes to the database.
  5. *
  6. * @return void
  7. */
  8. public function up()
  9. {
  10. //
  11. }
  12. /**
  13. * Revert the changes to the database.
  14. *
  15. * @return void
  16. */
  17. public function down()
  18. {
  19. //
  20. }
  21. }