diff --git a/src/Illuminate/Foundation/Bus/PendingDispatch.php b/src/Illuminate/Foundation/Bus/PendingDispatch.php index bac1f3dbdbe5..b9172a68da2f 100644 --- a/src/Illuminate/Foundation/Bus/PendingDispatch.php +++ b/src/Illuminate/Foundation/Bus/PendingDispatch.php @@ -6,6 +6,13 @@ class PendingDispatch { + /** + * The job. + * + * @var mixed + */ + protected $job; + /** * Create a new pending job dispatch. * diff --git a/src/Illuminate/Mail/Markdown.php b/src/Illuminate/Mail/Markdown.php index ce2a94311f7c..2c38d34e9808 100644 --- a/src/Illuminate/Mail/Markdown.php +++ b/src/Illuminate/Mail/Markdown.php @@ -90,7 +90,7 @@ public function renderText($view, array $data = []) * Parse the given Markdown text into HTML. * * @param string $text - * @return string + * @return \Illuminate\Support\HtmlString */ public static function parse($text) { diff --git a/src/Illuminate/Mail/PendingMail.php b/src/Illuminate/Mail/PendingMail.php index 716c8253d456..19855ed5f81f 100644 --- a/src/Illuminate/Mail/PendingMail.php +++ b/src/Illuminate/Mail/PendingMail.php @@ -9,7 +9,7 @@ class PendingMail /** * The mailer instance. * - * @var array + * @var \Illuminate\Mail\Mailer */ protected $mailer; diff --git a/src/Illuminate/Mail/Transport/SparkPostTransport.php b/src/Illuminate/Mail/Transport/SparkPostTransport.php index 492ade8df491..75fea3e0d13d 100644 --- a/src/Illuminate/Mail/Transport/SparkPostTransport.php +++ b/src/Illuminate/Mail/Transport/SparkPostTransport.php @@ -139,7 +139,7 @@ public function setKey($key) /** * Get the transmission options being used by the transport. * - * @return string + * @return array */ public function getOptions() { diff --git a/src/Illuminate/Notifications/Channels/MailChannel.php b/src/Illuminate/Notifications/Channels/MailChannel.php index c5dee61f4b84..b155c001fcf1 100644 --- a/src/Illuminate/Notifications/Channels/MailChannel.php +++ b/src/Illuminate/Notifications/Channels/MailChannel.php @@ -21,7 +21,7 @@ class MailChannel /** * The markdown implementation. * - * @var \Illuminate\Contracts\Mail\Mailer + * @var \Illuminate\Mail\Markdown */ protected $markdown; diff --git a/src/Illuminate/Pagination/LengthAwarePaginator.php b/src/Illuminate/Pagination/LengthAwarePaginator.php index b34281bf6e30..dd9f776e04da 100644 --- a/src/Illuminate/Pagination/LengthAwarePaginator.php +++ b/src/Illuminate/Pagination/LengthAwarePaginator.php @@ -71,7 +71,7 @@ protected function setCurrentPage($currentPage, $pageName) * * @param string $view * @param array $data - * @return string + * @return \Illuminate\Support\HtmlString */ public function links($view = null, $data = []) { @@ -83,7 +83,7 @@ public function links($view = null, $data = []) * * @param string $view * @param array $data - * @return \Illuminate\Support\HtmlString + * @return string */ public function render($view = null, $data = []) { diff --git a/src/Illuminate/Pagination/Paginator.php b/src/Illuminate/Pagination/Paginator.php index b3f7589a6bb9..8f2dd5e9815e 100644 --- a/src/Illuminate/Pagination/Paginator.php +++ b/src/Illuminate/Pagination/Paginator.php @@ -100,7 +100,7 @@ public function links($view = null, $data = []) * * @param string|null $view * @param array $data - * @return \Illuminate\Support\HtmlString + * @return string */ public function render($view = null, $data = []) {