Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Sep 30, 2024
1 parent c4c9990 commit 3fad112
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
},
"require-dev": {
"harrygulliford/laravel-firebird": "dev-laravel-11.x",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^11.0",
"singlestoredb/singlestoredb-laravel": "^1.5.4",
"yajra/laravel-oci8": "^11.2.4"
Expand Down
2 changes: 0 additions & 2 deletions phpstan.neon.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
includes:
- ./vendor/larastan/larastan/extension.neon
parameters:
level: 9
paths:
Expand Down
8 changes: 7 additions & 1 deletion src/Query/Traits/BuildsExpressionQueries.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,13 @@ public function recursionLimit($value)
return $this;
}

/** @inheritDoc */
/**
* Insert new records into the table using a subquery.
*
* @param list<string|\Illuminate\Database\Query\Expression> $columns
* @param string|\Closure|\Illuminate\Database\Eloquent\Builder<*>|\Illuminate\Database\Query\Builder $query
* @return int
*/
public function insertUsing(array $columns, $query)
{
$this->applyBeforeQueryCallbacks();
Expand Down

0 comments on commit 3fad112

Please sign in to comment.