Skip to content

Commit 6bcc9b1

Browse files
committed
Merge branch '5.4' of github.com:laravel/framework into 5.4
2 parents 5885f85 + 12272dd commit 6bcc9b1

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

src/Illuminate/Database/Connection.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,7 @@ protected function getElapsedTime($start)
688688
* @param array $bindings
689689
* @param \Closure $callback
690690
* @return mixed
691+
* @throws \Exception
691692
*/
692693
protected function handleQueryException($e, $query, $bindings, Closure $callback)
693694
{

src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public function bootstrap(Application $app)
5757
* @param \Illuminate\Contracts\Foundation\Application $app
5858
* @param \Illuminate\Contracts\Config\Repository $repository
5959
* @return void
60+
* @throws \Exception
6061
*/
6162
protected function loadConfigurationFiles(Application $app, RepositoryContract $repository)
6263
{

src/Illuminate/Mail/Markdown.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Markdown
3434
/**
3535
* Create a new Markdown renderer instance.
3636
*
37-
* @param \Illuminate\View\Factory $view
37+
* @param \Illuminate\Contracts\View\Factory $view
3838
* @param array $options
3939
* @return void
4040
*/

src/Illuminate/View/Engines/CompilerEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function get($path, array $data = [])
7070
* @param int $obLevel
7171
* @return void
7272
*
73-
* @throws $e
73+
* @throws \Exception
7474
*/
7575
protected function handleViewException(Exception $e, $obLevel)
7676
{

src/Illuminate/View/Engines/PhpEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected function evaluatePath($__path, $__data)
5656
* @param int $obLevel
5757
* @return void
5858
*
59-
* @throws $e
59+
* @throws \Exception
6060
*/
6161
protected function handleViewException(Exception $e, $obLevel)
6262
{

0 commit comments

Comments
 (0)