TestBehavior.php 743 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\Model\Behavior;
  4. use Cake\ORM\Behavior;
  5. class TestBehavior extends Behavior
  6. {
  7. /**
  8. * Test for event bindings.
  9. */
  10. public function beforeFind(): void
  11. {
  12. }
  13. /**
  14. * Test for event bindings.
  15. */
  16. public function beforeRules(): void
  17. {
  18. }
  19. /**
  20. * Test for event bindings.
  21. */
  22. public function afterRules(): void
  23. {
  24. }
  25. /**
  26. * Test for event bindings.
  27. */
  28. public function buildRules(): void
  29. {
  30. }
  31. /**
  32. * Test for event bindings.
  33. */
  34. public function afterSaveCommit(): void
  35. {
  36. }
  37. /**
  38. * Test for event bindings.
  39. */
  40. public function afterDeleteCommit(): void
  41. {
  42. }
  43. }