Skip to content

Commit

Permalink
[5.7] Add empty line before throw parameters in doc block; (#25641)
Browse files Browse the repository at this point in the history
- usual we have an empty line before the @throws in DocBlock. With this PR I have added empty line before all @throws
  • Loading branch information
TBlindaruk authored and taylorotwell committed Sep 16, 2018
1 parent b4e30f6 commit c06fd77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Concerns/ManagesLayouts.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public function yieldSection()
*
* @param bool $overwrite
* @return string
*
* @throws \InvalidArgumentException
*/
public function stopSection($overwrite = false)
Expand All @@ -100,6 +101,7 @@ public function stopSection($overwrite = false)
* Stop injecting content into a section and append it.
*
* @return string
*
* @throws \InvalidArgumentException
*/
public function appendSection()
Expand Down
2 changes: 2 additions & 0 deletions Concerns/ManagesStacks.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public function startPush($section, $content = '')
* Stop injecting content into a push section.
*
* @return string
*
* @throws \InvalidArgumentException
*/
public function stopPush()
Expand Down Expand Up @@ -104,6 +105,7 @@ public function startPrepend($section, $content = '')
* Stop prepending content into a push section.
*
* @return string
*
* @throws \InvalidArgumentException
*/
public function stopPrepend()
Expand Down
1 change: 1 addition & 0 deletions Engines/EngineResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function register($engine, Closure $resolver)
*
* @param string $engine
* @return \Illuminate\Contracts\View\Engine
*
* @throws \InvalidArgumentException
*/
public function resolve($engine)
Expand Down

0 comments on commit c06fd77

Please sign in to comment.