| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- declare(strict_types=1);
- namespace TestApp\Model\Behavior;
- use Cake\ORM\Behavior;
- class TestBehavior extends Behavior
- {
- /**
- * Test for event bindings.
- */
- public function beforeFind(): void
- {
- }
- /**
- * Test for event bindings.
- */
- public function beforeRules(): void
- {
- }
- /**
- * Test for event bindings.
- */
- public function afterRules(): void
- {
- }
- /**
- * Test for event bindings.
- */
- public function buildRules(): void
- {
- }
- /**
- * Test for event bindings.
- */
- public function afterSaveCommit(): void
- {
- }
- /**
- * Test for event bindings.
- */
- public function afterDeleteCommit(): void
- {
- }
- }
|