Skip to content

Commit

Permalink
chore: dev dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
noelma committed Jan 7, 2023
1 parent bfa2938 commit 747a276
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"php": ">=7.2"
},
"require-dev": {
"soosyze/php-cs-fixer-config": "^1.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^8.5",
"rector/rector": "^0.12"
"soosyze/php-cs-fixer-config": "^1.0",
"rector/rector": "^0.15"
},
"suggest": {
"phpdocumentor/phpdocumentor": "To generate documentation.",
Expand Down
2 changes: 1 addition & 1 deletion src/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ private function insertIntoToString(): string
$output .= sprintf('(%s) VALUES%s', addslashes(implode(', ', $this->columnNames)), PHP_EOL);
}
$data = array_map(
function ($values) {
function ($values): string {
$data = array_map(
function ($item) {
return self::getValueToString($item);
Expand Down

0 comments on commit 747a276

Please sign in to comment.