OnChangeDefault.php 416 B

12345678910111213141516
  1. <?php
  2. namespace App\Service\OnChange;
  3. class OnChangeDefault implements OnChangeInterface
  4. {
  5. public function validate($data, OnChangeContext $context): void {}
  6. public function preProcess($data, OnChangeContext $context): mixed {
  7. return $data;
  8. }
  9. public function beforeChange($data, OnChangeContext $context): void {}
  10. public function onChange($data, OnChangeContext $context): void {}
  11. }