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
356 B

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