From 03bc60f8a78aa86dd854db74a8d5c306a142d1fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Sat, 17 May 2025 23:05:49 +0200 Subject: [PATCH 1/2] make Loop class util not internal --- src/Util/Loop.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Util/Loop.php b/src/Util/Loop.php index 5a2cca4..20cc182 100644 --- a/src/Util/Loop.php +++ b/src/Util/Loop.php @@ -8,8 +8,6 @@ /** * Repeats executing a code until it was successful. - * - * @internal */ class Loop { From e66f221cac6bbf77237945204f9785d39372415f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Sat, 17 May 2025 23:07:23 +0200 Subject: [PATCH 2/2] male AbstractLockMutex non-internal as phpstan complains even for child::synchronized() --- src/Mutex/AbstractLockMutex.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Mutex/AbstractLockMutex.php b/src/Mutex/AbstractLockMutex.php index e663d2c..5d4203b 100644 --- a/src/Mutex/AbstractLockMutex.php +++ b/src/Mutex/AbstractLockMutex.php @@ -7,9 +7,6 @@ use Malkusch\Lock\Exception\LockAcquireException; use Malkusch\Lock\Exception\LockReleaseException; -/** - * @internal - */ abstract class AbstractLockMutex extends AbstractMutex { /**