Completed
Push — developer ( 6912c0...d42918 )
by Никита
42:10
created
src/AbstractQueueTransport.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
         }
84 84
 
85 85
         /**
86
-         * @param double|integer $wait_time
86
+         * @param integer $wait_time
87 87
          *
88 88
          * @throws QueueException
89 89
          */
Please login to merge, or discard this patch.
src/Queue.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         /**
29 29
          * SmartQueue constructor.
30 30
          *
31
-         * @param GeneralQueueConstructionSettings|object $settings
31
+         * @param GeneralQueueConstructionSettings $settings
32 32
          *
33 33
          * @throws QueueException
34 34
          */
Please login to merge, or discard this patch.
src/QueueTransport.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         function push($stream);
35 35
 
36 36
         /**
37
-         * @param double|integer $wait_time
37
+         * @param integer $wait_time
38 38
          *
39 39
          * @return iMessage|object|null
40 40
          */
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         static function get_real_key_for_message($message);
67 67
 
68 68
         /**
69
-         * @param double|integer $wait_time
69
+         * @param integer $wait_time
70 70
          *
71 71
          * @throws QueueException
72 72
          * @return void
@@ -75,6 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
         /**
77 77
          * @param callable $closure
78
+         * @return void
78 79
          */
79 80
         function set_callback_closure($closure);
80 81
 
Please login to merge, or discard this patch.
src/FileDBQueueTransport.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
         /**
126 126
          * Блокируем index mutex
127 127
          *
128
-         * @param double|integer $time
128
+         * @param integer $time
129 129
          *
130 130
          * @return boolean
131 131
          * @throws \NokitaKaze\Mutex\MutexException
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
         }
524 524
 
525 525
         /**
526
-         * @param double|integer $wait_time
526
+         * @param integer $wait_time
527 527
          *
528 528
          * @return iMessage|object|null
529 529
          * @throws \NokitaKaze\Mutex\MutexException
Please login to merge, or discard this patch.
src/SmallFilesQueueTransport.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         }
98 98
 
99 99
         /**
100
-         * @param double|integer $wait_time
100
+         * @param integer $wait_time
101 101
          *
102 102
          * @return iMessage|object|null
103 103
          * @throws QueueException
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         }
135 135
 
136 136
         /**
137
-         * @param double|integer $wait_time
137
+         * @param integer $wait_time
138 138
          *
139 139
          * @return iMessage|object|null
140 140
          */
Please login to merge, or discard this patch.
src/QueueFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         /**
64 64
          * @param GeneralQueueConstructionSettings $settings
65 65
          *
66
-         * @return Queue[]
66
+         * @return SmallFilesQueueConstructionSettingsForGeneral[]
67 67
          */
68 68
         protected static function get_scenario_write_small_files($settings) {
69 69
             /**
Please login to merge, or discard this patch.