Skip to content

Commit

Permalink
Remove self typehints
Browse files Browse the repository at this point in the history
  • Loading branch information
adriansuter committed May 20, 2019
1 parent aaabf0a commit b2781e4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Uri.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function getUserInfo(): string
/**
* {@inheritdoc}
*/
public function withFragment($fragment): self
public function withFragment($fragment)
{
$uri = $this->uri->withFragment($fragment);
return new static($uri);
Expand All @@ -111,7 +111,7 @@ public function withFragment($fragment): self
/**
* {@inheritdoc}
*/
public function withHost($host): self
public function withHost($host)
{
$uri = $this->uri->withHost($host);
return new static($uri);
Expand All @@ -120,7 +120,7 @@ public function withHost($host): self
/**
* {@inheritdoc}
*/
public function withPath($path): self
public function withPath($path)
{
$uri = $this->uri->withPath($path);
return new static($uri);
Expand All @@ -129,7 +129,7 @@ public function withPath($path): self
/**
* {@inheritdoc}
*/
public function withPort($port): self
public function withPort($port)
{
$uri = $this->uri->withPort($port);
return new static($uri);
Expand All @@ -138,7 +138,7 @@ public function withPort($port): self
/**
* {@inheritdoc}
*/
public function withQuery($query): self
public function withQuery($query)
{
$uri = $this->uri->withQuery($query);
return new static($uri);
Expand All @@ -147,7 +147,7 @@ public function withQuery($query): self
/**
* {@inheritdoc}
*/
public function withScheme($scheme): self
public function withScheme($scheme)
{
$uri = $this->uri->withScheme($scheme);
return new static($uri);
Expand All @@ -156,7 +156,7 @@ public function withScheme($scheme): self
/**
* {@inheritdoc}
*/
public function withUserInfo($user, $password = null): self
public function withUserInfo($user, $password = null)
{
$uri = $this->uri->withUserInfo($user, $password);
return new static($uri);
Expand Down

0 comments on commit b2781e4

Please sign in to comment.