Completed
Push — master ( 4c4a4d...80e1e4 )
by Samuel
12s
created
src/Tolerance/Throttling/RateLimit/LeakyBucket.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -49,6 +49,7 @@
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * {@inheritdoc}
52
+     * @param string $identifier
52 53
      */
53 54
     public function getTicksBeforeUnderLimit($identifier)
54 55
     {
Please login to merge, or discard this patch.
src/Tolerance/Bridge/Symfony/Metrics/Event/RequestEnded.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * @param Request $request
29 29
      * @param Response|null $response
30
-     * @param \Exception|\Throwable|null $exception
30
+     * @param \Exception $exception
31 31
      */
32 32
     public function __construct(Request $request, Response $response = null, $exception = null)
33 33
     {
Please login to merge, or discard this patch.
src/Tolerance/Operation/Runner/RetryPromiseOperationRunner.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,6 @@  discard block
 block discarded – undo
41 41
 
42 42
     /**
43 43
      * @param Waiter                     $waitStrategy
44
-     * @param ThrowableCatcherVoter|null $fulfilledEvaluator
45
-     * @param ThrowableCatcherVoter|null $rejectedEvaluator
46 44
      */
47 45
     public function __construct(Waiter $waitStrategy, ThrowableCatcherVoter $fulfilledVoter = null, ThrowableCatcherVoter $rejectedVoter = null)
48 46
     {
@@ -84,6 +82,9 @@  discard block
 block discarded – undo
84 82
         );
85 83
     }
86 84
 
85
+    /**
86
+     * @param boolean $fulfilled
87
+     */
87 88
     protected function onTerminate(PromiseOperation $operation, ThrowableCatcherVoter $voter, $fulfilled)
88 89
     {
89 90
         return function ($value) use ($operation, $voter, $fulfilled) {
Please login to merge, or discard this patch.