Skip to content

Commit b3a066d

Browse files
committed
Fixed CS
1 parent bd3f4ed commit b3a066d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Helper/MultiSemaphore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private function acquireResources(): bool
110110
}
111111

112112
$resource->setAcquired(
113-
min($resource->getAcquire(), ($semaphoreMetaDataValue['limit'] - array_sum($semaphoreMetaDataValue['sessions'])))
113+
min($resource->getAcquire(), $semaphoreMetaDataValue['limit'] - array_sum($semaphoreMetaDataValue['sessions']))
114114
);
115115

116116
// add new element to metadata and save it

0 commit comments

Comments
 (0)