Skip to content

Commit

Permalink
@throws tag is missing in docblocks (#25967)
Browse files Browse the repository at this point in the history
  • Loading branch information
fkeloks authored and taylorotwell committed Oct 6, 2018
1 parent 29b9f45 commit ea47451
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Illuminate/Mail/Mailable.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ public function later($delay, Queue $queue)
* Render the mailable into a view.
*
* @return \Illuminate\View\View
*
* @throws \ReflectionException
*/
public function render()
{
Expand All @@ -217,6 +219,8 @@ public function render()
* Build the view for the message.
*
* @return array|string
*
* @throws \ReflectionException
*/
protected function buildView()
{
Expand Down Expand Up @@ -244,6 +248,8 @@ protected function buildView()
* Build the Markdown view for the message.
*
* @return array
*
* @throws \ReflectionException
*/
protected function buildMarkdownView()
{
Expand All @@ -265,6 +271,8 @@ protected function buildMarkdownView()
* Build the view data for the message.
*
* @return array
*
* @throws \ReflectionException
*/
public function buildViewData()
{
Expand Down

0 comments on commit ea47451

Please sign in to comment.