You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuAbstractMiddleware.php 364B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 6/5/16
  6. * Time: 2:58 PM
  7. */
  8. namespace Luticate\Utils;
  9. use Luticate\Utils\Dbo\LuRouteDbo;
  10. abstract class LuAbstractMiddleware
  11. {
  12. public function onBefore(LuRouteDbo $route, ...$params)
  13. {
  14. }
  15. public function onAfter(LuRouteDbo $route, $result, ...$params)
  16. {
  17. }
  18. }