Test Failed
Push — master ( 3499c9...ef8c92 )
by Никита
01:30
created
src/FileMutex.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
         }
129 129
 
130 130
         /**
131
-         * @param double|integer $time
131
+         * @param integer $time
132 132
          *
133 133
          * @return bool
134 134
          * @throws MutexException
Please login to merge, or discard this patch.
src/MutexInterface.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,16 +11,20 @@
 block discarded – undo
11 11
          * MutexInterface constructor.
12 12
          *
13 13
          * @param MutexSettings|array $settings
14
+         * @return void
14 15
          */
15 16
         function __construct($settings);
16 17
 
17 18
         /**
18
-         * @param integer|double $time
19
+         * @param integer $time
19 20
          *
20
-         * @return mixed
21
+         * @return boolean
21 22
          */
22 23
         function get_lock($time = -1);
23 24
 
25
+        /**
26
+         * @return void
27
+         */
24 28
         function release_lock();
25 29
 
26 30
         /**
Please login to merge, or discard this patch.