Skip to content

Commit

Permalink
chore: 1 space(s) after IF keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
petrknap committed Nov 11, 2023
1 parent eaf34da commit bf5990f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhpCriticalSection.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __construct(
public function __invoke(callable $criticalSection)
{
try {
if($this->lock->acquire(blocking: $this->isBlocking) === false) {
if ($this->lock->acquire(blocking: $this->isBlocking) === false) {
return null;
}
} catch (LockConflictedException | LockAcquiringException $acquiringException) {
Expand Down

0 comments on commit bf5990f

Please sign in to comment.