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.

25 lines
318 B

3 years ago
  1. <?php
  2. namespace App\ResponseHandler;
  3. use App\Handlers\Handler;
  4. /**
  5. *
  6. *
  7. *
  8. */
  9. class ActionHandler extends Handler implements ActionHandlerInterface
  10. {
  11. protected $data;
  12. /**
  13. *
  14. * @param mixed $data
  15. *
  16. */
  17. public function __construct($data)
  18. {
  19. $this->data = $data;
  20. }
  21. }