Skip to content

Commit 516caf0

Browse files
committed
CS fixes
- Move closing paren/open brace to following line - No space following negation operator
1 parent 6450c42 commit 516caf0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Negotiation/Negotiator.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ protected function match(AcceptHeader $accept, AcceptHeader $priority, $index)
5050
list($prioritySub, $priorityPlus) = $this->splitSubPart($prioritySub);
5151

5252
// If no wildcards in either the subtype or + segment, do nothing.
53-
if (! ($acceptBase === '*' || $baseEqual)
54-
|| ! ($acceptSub === '*' || $prioritySub === '*' || $acceptPlus === '*' || $priorityPlus === '*')) {
53+
if (!($acceptBase === '*' || $baseEqual)
54+
|| !($acceptSub === '*' || $prioritySub === '*' || $acceptPlus === '*' || $priorityPlus === '*')
55+
) {
5556
return null;
5657
}
5758

0 commit comments

Comments
 (0)