File "NoMutex.php"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/vibes/includes/libraries/lock/mutex/NoMutex.php
File
size: 461 B (461 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
declare(strict_types=1);
namespace malkusch\lock\mutex;
/**
* This mutex doesn't lock at all.
*
* Synchronization is not provided! This mutex is just implementing the
* interface without locking.
*
* @author Markus Malkusch <markus@malkusch.de>
* @link bitcoin:1P5FAZ4QhXCuwYPnLZdk3PJsqePbu1UDDA Donations
* @license WTFPL
*/
class NoMutex extends Mutex
{
public function synchronized(callable $code)
{
return $code();
}
}