This commit is contained in:
SilverFire - Dmitry Naumenko
2017-09-13 22:35:26 +03:00
parent f8a8f1f381
commit 20302c873a

View File

@ -17,7 +17,7 @@ use yii\helpers\FileHelper;
* *
* Application configuration example: * Application configuration example:
* *
* ``` * ```php
* [ * [
* 'components' => [ * 'components' => [
* 'mutex' => [ * 'mutex' => [
@ -132,6 +132,9 @@ class FileMutex extends Mutex
$this->_files[$name] = $file; $this->_files[$name] = $file;
return true; return true;
} }
// Should not be reached normally.
return false;
} }
/** /**