Skip to content

Commit

Permalink
Update HasManipulators.php
Browse files Browse the repository at this point in the history
  • Loading branch information
cybersai authored May 17, 2020
1 parent 3d339b1 commit a7ebdf2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/HasManipulators.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function setSessionIdFromRequest(string $key)
return $this;
}

public function setPhoneNumber(string $phoneNumber)
public function setPhoneNumber(?string $phoneNumber)
{
$this->phoneNumber = $phoneNumber;

Expand All @@ -35,7 +35,7 @@ public function setPhoneNumberFromRequest(string $key)
return $this;
}

public function setNetwork(string $network)
public function setNetwork(?string $network)
{
$this->network = $network;

Expand All @@ -48,7 +48,7 @@ public function setNetworkFromRequest(string $key)
return $this;
}

public function setInput(string $input)
public function setInput(?string $input)
{
$this->input = $input;

Expand All @@ -62,7 +62,7 @@ public function setInputFromRequest(string $key)
return $this;
}

public function setStore(string $store)
public function setStore(?string $store)
{
$this->store = $store;

Expand Down

0 comments on commit a7ebdf2

Please sign in to comment.