Skip to content

Commit

Permalink
Updated language for contextual clarity and removal of diactoros refe…
Browse files Browse the repository at this point in the history
…rence
  • Loading branch information
Ivan Novak committed Jan 4, 2020
1 parent a976157 commit 3e25c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Routing/RoutingServiceProvider.php
Expand Up @@ -143,7 +143,7 @@ protected function registerPsrRequest()
return (new DiactorosFactory)->createRequest($app->make('request'));
}

throw new Exception('Unable to resolve PSR request. Please install nyholm/psr7 or laminas/laminas-diactoros.');
throw new Exception('Unable to resolve PSR request. Please install symfony/psr-http-message-bridge and nyholm/psr7.');
});
}

Expand All @@ -163,7 +163,7 @@ protected function registerPsrResponse()
return new ZendPsrResponse;
}

throw new Exception('Unable to resolve PSR response. Please install nyholm/psr7 or laminas/laminas-diactoros.');
throw new Exception('Unable to resolve PSR response. Please install nyholm/psr7.');
});
}

Expand Down

0 comments on commit 3e25c98

Please sign in to comment.