8000 [HttpFoundation] [Request] Throw dedicated exceptions. by SpacePossum · Pull Request #20389 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[HttpFoundation] [Request] Throw dedicated exceptions. #20389

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update AbstractHostException.php
  • Loading branch information
SpacePossum authored Nov 16, 2016
commit c721ecc8609b6bc71484d8acd9e0c90c9f5173f9
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@
*/
abstract class AbstractHostException extends \UnexpectedValueException implements ExceptionInterface
{
/**
* @var string
*/
private $host;

/**
Expand All @@ -35,9 +32,6 @@ public function __construct($host, $message)
$this->host = $host;
}

/**
* @return string
*/
public function getHost()
{
return $this->host;
Expand Down
0