Skip to content

Commit

Permalink
Merge branch '5.4' of github.com:laravel/framework into 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jun 7, 2017
2 parents 5885f85 + 12272dd commit 6bcc9b1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/Illuminate/Database/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,7 @@ protected function getElapsedTime($start)
* @param array $bindings
* @param \Closure $callback
* @return mixed
* @throws \Exception
*/
protected function handleQueryException($e, $query, $bindings, Closure $callback)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public function bootstrap(Application $app)
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Config\Repository $repository
* @return void
* @throws \Exception
*/
protected function loadConfigurationFiles(Application $app, RepositoryContract $repository)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Mail/Markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Markdown
/**
* Create a new Markdown renderer instance.
*
* @param \Illuminate\View\Factory $view
* @param \Illuminate\Contracts\View\Factory $view
* @param array $options
* @return void
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/View/Engines/CompilerEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function get($path, array $data = [])
* @param int $obLevel
* @return void
*
* @throws $e
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/View/Engines/PhpEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected function evaluatePath($__path, $__data)
* @param int $obLevel
* @return void
*
* @throws $e
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
Expand Down

0 comments on commit 6bcc9b1

Please sign in to comment.