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.

17 line
262B

  1. <?php
  2. namespace Framework\Provider;
  3. use Framework\App;
  4. use Framework\Http\Response;
  5. class ResponseProvider
  6. {
  7. public function bind(App $app): void
  8. {
  9. $app->bind('response', function($app) {
  10. return new Response();
  11. });
  12. }
  13. }

Powered by TurnKey Linux.