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.

27 lines
424 B

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