Skip to content

Commit

Permalink
Merge branch '5.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Sep 17, 2018
2 parents cffd60b + bad1260 commit 18f7ef6
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions Concerns/ManagesTransactions.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ protected function handleTransactionException($e, $currentAttempt, $maxAttempts)
* Start a new database transaction.
*
* @return void
*
* @throws \Exception
*/
public function beginTransaction()
Expand Down
1 change: 1 addition & 0 deletions Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -705,6 +705,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
2 changes: 2 additions & 0 deletions Eloquent/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ public function pad($size, $value)
* Get the type of the entities being queued.
*
* @return string|null
*
* @throws \LogicException
*/
public function getQueueableClass()
Expand Down Expand Up @@ -527,6 +528,7 @@ public function getQueueableRelations()
* Get the connection of the entities being queued.
*
* @return string|null
*
* @throws \LogicException
*/
public function getQueueableConnection()
Expand Down
2 changes: 1 addition & 1 deletion Eloquent/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ public function refresh()
* Clone the model into a new, non-existing instance.
*
* @param array|null $except
* @return \Illuminate\Database\Eloquent\Model
* @return static
*/
public function replicate(array $except = null)
{
Expand Down
1 change: 1 addition & 0 deletions Migrations/MigrationCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function __construct(Filesystem $files)
* @param string $table
* @param bool $create
* @return string
*
* @throws \Exception
*/
public function create($name, $path, $table = null, $create = false)
Expand Down
1 change: 1 addition & 0 deletions Query/Processors/SqlServerProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public function processInsertGetId(Builder $query, $sql, $values, $sequence = nu
*
* @param \Illuminate\Database\Connection $connection
* @return int
*
* @throws \Exception
*/
protected function processInsertGetIdForOdbc(Connection $connection)
Expand Down
2 changes: 2 additions & 0 deletions Schema/Grammars/SQLiteGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public function compileIndex(Blueprint $blueprint, Fluent $command)
*
* @param \Illuminate\Database\Schema\Blueprint $blueprint
* @param \Illuminate\Support\Fluent $command
*
* @throws \RuntimeException
*/
public function compileSpatialIndex(Blueprint $blueprint, Fluent $command)
Expand Down Expand Up @@ -308,6 +309,7 @@ public function compileDropIndex(Blueprint $blueprint, Fluent $command)
*
* @param \Illuminate\Database\Schema\Blueprint $blueprint
* @param \Illuminate\Support\Fluent $command
*
* @throws \RuntimeException
*/
public function compileDropSpatialIndex(Blueprint $blueprint, Fluent $command)
Expand Down

0 comments on commit 18f7ef6

Please sign in to comment.