Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhrtly authored and taylorotwell committed Dec 15, 2021
1 parent 5a53592 commit 09689f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Collections/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public function contains($key, $operator = null, $value = null)
*/
public function missing($key, $operator = null, $value = null)
{
return !$this->contains($key, $operator, $value);
return ! $this->contains($key, $operator, $value);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Collections/LazyCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public function contains($key, $operator = null, $value = null)
*/
public function missing($key, $operator = null, $value = null)
{
return !$this->contains($key, $operator, $value);
return ! $this->contains($key, $operator, $value);
}

/**
Expand Down

0 comments on commit 09689f2

Please sign in to comment.