Completed
Push — master ( e6ed61...6d89c4 )
by Michał
02:50
created
src/auth/id/protocols/oauth1/middlewares/Authorization.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
      * See the class description for which kind of additional options are supported/mandatory.
105 105
      *
106 106
      * @param   callable    $handler
107
-     * @return  callable
107
+     * @return  \Closure
108 108
      */
109 109
     public function __invoke(callable $handler) : callable
110 110
     {
Please login to merge, or discard this patch.
src/notify/transports/mail/drivers/Postmark.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
     /**
159 159
      * Converts an array of e-mail addresses into a string compliant with Postmark's API's format.
160 160
      *
161
-     * @param   array   $emails     The e-mail addresses to convert.
161
+     * @param   string[]   $emails     The e-mail addresses to convert.
162 162
      * @return  string
163 163
      */
164 164
     protected function emailsToString(array $emails) : string
Please login to merge, or discard this patch.
src/notify/transports/mail/drivers/Sendgrid.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      * Parses the first and only the first address from the given array of e-mail addresses into a structure
153 153
      * understood by Sendgrid's API.
154 154
      *
155
-     * @param   array   $addresses  The e-mail addresses to parse.
155
+     * @param   string[]   $addresses  The e-mail addresses to parse.
156 156
      * @return  array
157 157
      */
158 158
     protected function processFirstAddress(array $addresses) : array
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     /**
173 173
      * Parses the given array of e-mail addresses into a structure understood by Sendgrid's API.
174 174
      *
175
-     * @param   array   $addresses  The e-mail addresses to parse.
175
+     * @param   string[]   $addresses  The e-mail addresses to parse.
176 176
      * @return  array
177 177
      */
178 178
     protected function processAllAddresses(array $addresses) : array
Please login to merge, or discard this patch.
src/notify/transports/slack/Message.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -403,7 +403,7 @@
 block discarded – undo
403 403
     /**
404 404
      * Attempts to create a slack\Attachment instance based on the $attachment data given.
405 405
      *
406
-     * @param   mixed   $attachment
406
+     * @param   callable   $attachment
407 407
      * @return  mixed                   Either an instantiated slack\Attachment, or a passthrough of the input data.
408 408
      */
409 409
     protected function resolveAttachment($attachment)
Please login to merge, or discard this patch.
src/utils/math/bigint/Gmp.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     /**
109 109
      * Constructs a new GMP BigInt instance.
110 110
      *
111
-     * @param   \GMP    $value  The GMP object holding the actual value.
111
+     * @param   resource    $value  The GMP object holding the actual value.
112 112
      */
113 113
     public function __construct(\GMP $value)
114 114
     {
Please login to merge, or discard this patch.
src/utils/tests/FuncTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -414,6 +414,10 @@
 block discarded – undo
414 414
     }
415 415
 
416 416
     // Used by the when/unless tests.
417
+
418
+    /**
419
+     * @param boolean $exists
420
+     */
417 421
     protected function setWhenExists($exists)
418 422
     {
419 423
         $this->whenExists = (bool) $exists;
Please login to merge, or discard this patch.
src/notify/transports/slack/message/Attachment.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -705,7 +705,7 @@
 block discarded – undo
705 705
         }
706 706
 
707 707
         throw new \InvalidArgumentException("Expected an array or an instance of ".attachment\Action::class.", got [".diagnostics\Debug::getTypeName($action)."] instead.");
708
-   }
708
+    }
709 709
 
710 710
     /**
711 711
      * {@inheritDoc}
Please login to merge, or discard this patch.
src/diagnostics/debug/Handler.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      */
60 60
     public function apply($condition, callable $onMatch = null) : self
61 61
     {
62
-         if (!is_callable($condition)) {
62
+            if (!is_callable($condition)) {
63 63
             if (!$condition instanceof Condition) {
64 64
                 throw new \InvalidArgumentException('Expected a \nyx\diagnostics\Condition or a callable as first argument, got ['.diagnostics\Debug::getTypeName($condition).'] instead.');
65 65
             }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
      *
157 157
      * @param   string          $name       The name of the Event to emit {@see definitions/Events}.
158 158
      * @param   \Throwable      $exception  The initial Exception to be passed to listeners.
159
-     * @return  \Exception|null             Either an Exception when event emission occurred or null if no Emitter
159
+     * @return  null|\Throwable             Either an Exception when event emission occurred or null if no Emitter
160 160
      *                                      is set and therefore no events were emitted.
161 161
      */
162 162
     protected function emitDebugEvent($name, \Throwable $exception)
Please login to merge, or discard this patch.
src/diagnostics/Debug.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     /**
127 127
      * Returns the Dumper in use.
128 128
      *
129
-     * @return  interfaces\Dumper|callable
129
+     * @return  interfaces\Dumper
130 130
      */
131 131
     public static function getDumper() : interfaces\Dumper
132 132
     {
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     /**
180 180
      * Returns a default variable dumper to be used by self::dump() if no other has been set.
181 181
      *
182
-     * @return  interfaces\Dumper|callable  $dumper
182
+     * @return  string  $dumper
183 183
      */
184 184
     protected static function getDefaultDumper()
185 185
     {
Please login to merge, or discard this patch.