Skip to content

Commit 0f1771d

Browse files
Update person responsible for this project now.
1 parent 11acdde commit 0f1771d

32 files changed

+33
-33
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,11 +237,11 @@ $mutex->synchronized(function () use ($pdo, $accountId, $amount) {
237237
# License and authors
238238

239239
This project is free and under the WTFPL.
240-
Responsible for this project is Markus Malkusch [email protected].
240+
Responsible for this project is Willem Stuursma-Ruwen <[email protected]>.
241241

242242
## Donations
243243

244244
If you like this project and feel generous donate a few Bitcoins here:
245-
[1335STSwu9hST4vcMRppEPgENMHD2r1REK](bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK)
245+
[1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA](bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA)
246246

247247

classes/exception/LockAcquireException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* least had no side effects.
1010
*
1111
* @author Markus Malkusch <[email protected]>
12-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
12+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1313
* @license WTFPL
1414
*/
1515
class LockAcquireException extends MutexException

classes/exception/LockReleaseException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* i.e. side effects may have happened.
1111
*
1212
* @author Markus Malkusch <[email protected]>
13-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
13+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1414
* @license WTFPL
1515
*/
1616
class LockReleaseException extends MutexException

classes/exception/MutexException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* A Mutex exception.
77
*
88
* @author Markus Malkusch <[email protected]>
9-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
9+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1010
* @license WTFPL
1111
*/
1212
class MutexException extends \Exception

classes/exception/TimeoutException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* A timeout was exceeded.
77
*
88
* @author Markus Malkusch <[email protected]>
9-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
9+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1010
* @license WTFPL
1111
*/
1212
class TimeoutException extends LockAcquireException

classes/mutex/CASMutex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* a rare event.
1515
*
1616
* @author Markus Malkusch <[email protected]>
17-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
17+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1818
* @license WTFPL
1919
*/
2020
class CASMutex extends Mutex

classes/mutex/FlockMutex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Flock() based mutex implementation.
1010
*
1111
* @author Markus Malkusch <[email protected]>
12-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
12+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1313
* @license WTFPL
1414
* @see flock()
1515
*/

classes/mutex/LockMutex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Locking mutex.
1010
*
1111
* @author Markus Malkusch <[email protected]>
12-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
12+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1313
* @license WTFPL
1414
* @internal
1515
*/

classes/mutex/MemcacheMutex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Memcache based spinlock implementation.
99
*
1010
* @author Markus Malkusch <[email protected]>
11-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
11+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1212
* @license WTFPL
1313
* @deprecated 1.0.0 Use MemcachedMutex together with ext-memcached.
1414
*/

classes/mutex/MemcachedMutex.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Memcached based spinlock implementation.
99
*
1010
* @author Markus Malkusch <[email protected]>
11-
* @link bitcoin:1335STSwu9hST4vcMRppEPgENMHD2r1REK Donations
11+
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
1212
* @license WTFPL
1313
*/
1414
class MemcachedMutex extends SpinlockMutex

0 commit comments

Comments
 (0)