Unverified Commit c4e2a663 authored by Gergő D. Nagy's avatar Gergő D. Nagy Committed by GitHub
Browse files

[7.x] Fix docblocks (#32065)


* [7.x] Fix docblocks

* Update Queueable.php
Co-authored-by: default avatarGraham Campbell <GrahamCampbell@users.noreply.github.com>
parent edb60118
Showing with 5 additions and 4 deletions
+5 -4
......@@ -46,6 +46,8 @@ trait Queueable
/**
* The middleware the job should be dispatched through.
*
* @var array
*/
public $middleware = [];
......@@ -154,8 +156,7 @@ trait Queueable
/**
* Serialize a job for queuing.
*
* @param mixed $job
*
* @param mixed $job
* @return string
*/
protected function serializeJob($job)
......
......@@ -578,7 +578,7 @@ class PendingRequest
/**
* Execute the "before sending" callbacks.
*
* @param \GuzzleHttp\Psr7\RequestInterface
* @param \GuzzleHttp\Psr7\RequestInterface $request
* @param array $options
* @return \Closure
*/
......
......@@ -29,7 +29,7 @@ class Response implements ArrayAccess
/**
* Create a new response instance.
*
* @param \Psr\Http\Message\MessageInterface
* @param \Psr\Http\Message\MessageInterface $response
* @return void
*/
public function __construct($response)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment