@@ -173,7 +173,7 @@ implementations or create/extend your own implementation.
173173#### FlockMutex
174174
175175The ** FlockMutex** is a lock implementation based on
176- [ ` flock() ` ] ( http ://php.net/manual/en/function.flock.php) .
176+ [ ` flock() ` ] ( https ://php.net/manual/en/function.flock.php) .
177177
178178Example:
179179``` php
@@ -194,7 +194,7 @@ extension if possible or busy waiting if not.
194194#### MemcachedMutex
195195
196196The ** MemcachedMutex** is a spinlock implementation which uses the
197- [ ` Memcached ` extension] ( http ://php.net/manual/en/book.memcached.php) .
197+ [ ` Memcached ` extension] ( https ://php.net/manual/en/book.memcached.php) .
198198
199199Example:
200200``` php
@@ -215,7 +215,7 @@ $mutex->synchronized(function () use ($bankAccount, $amount) {
215215#### RedisMutex
216216
217217The ** RedisMutex** is the distributed lock implementation of
218- [ RedLock] ( http ://redis.io/topics/distlock) which supports the
218+ [ RedLock] ( https ://redis.io/topics/distlock#the-redlock-algorithm ) which supports the
219219[ ` phpredis ` extension] ( https://github.com/phpredis/phpredis )
220220or [ ` Predis ` API] ( https://github.com/nrk/predis ) .
221221
@@ -244,7 +244,7 @@ $mutex->synchronized(function () use ($bankAccount, $amount) {
244244#### SemaphoreMutex
245245
246246The ** SemaphoreMutex** is a lock implementation based on
247- [ Semaphore] ( http ://php.net/manual/en/ref.sem.php) .
247+ [ Semaphore] ( https ://php.net/manual/en/ref.sem.php) .
248248
249249Example:
250250``` php
@@ -330,9 +330,9 @@ Commercial support is available.
330330
331331This project is free and is licensed under the MIT.
332332
333- [ 1 ] : http ://semver.org/
333+ [ 1 ] : https ://semver.org/
334334[ 2 ] : https://github.com/nrk/predis
335- [ 3 ] : http ://php.net/manual/en/book.pcntl.php
335+ [ 3 ] : https ://php.net/manual/en/book.pcntl.php
336336[ 4 ] : https://getcomposer.org/
337337[ 5 ] : https://github.com/php-lock/lock/blob/3ca295ccda/src/Mutex/Mutex.php#L15
338338[ 6 ] : https://github.com/php-lock/lock/blob/3ca295ccda/src/Mutex/Mutex.php#L38
0 commit comments