Skip to content

Commit

Permalink
Update Composer dependencies
Browse files Browse the repository at this point in the history
  - Upgrading phpdocumentor/type-resolver (1.9.0 => 1.10.0)
  - Upgrading phpmyadmin/sql-parser (dev-master 5c4dc47 => dev-master 6d8c215)

Signed-off-by: Maurício Meneghini Fauth <[email protected]>
  • Loading branch information
MauricioFauth committed Nov 10, 2024
1 parent 49c6ebb commit f2de7c9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Display/Results.php
Original file line number Diff line number Diff line change
Expand Up @@ -3103,9 +3103,9 @@ public function getTable(

if ($statement !== null && ! empty($statement->order)) {
foreach ($statement->order as $o) {
$sortExpression[] = $o->expr->expr . ' ' . $o->type;
$sortExpression[] = $o->expr->expr . ' ' . $o->type->value;

Check warning on line 3106 in src/Display/Results.php

View workflow job for this annotation

GitHub Actions / Infection (8.2, ubuntu-latest)

Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ $sortDirection = []; if ($statement !== null && !empty($statement->order)) { foreach ($statement->order as $o) { - $sortExpression[] = $o->expr->expr . ' ' . $o->type->value; + $sortExpression[] = ' ' . $o->expr->expr . $o->type->value; $sortExpressionNoDirection[] = $o->expr->expr; $sortDirection[] = $o->type->value; }

Check warning on line 3106 in src/Display/Results.php

View workflow job for this annotation

GitHub Actions / Infection (8.2, ubuntu-latest)

Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ $sortDirection = []; if ($statement !== null && !empty($statement->order)) { foreach ($statement->order as $o) { - $sortExpression[] = $o->expr->expr . ' ' . $o->type->value; + $sortExpression[] = ' ' . $o->type->value; $sortExpressionNoDirection[] = $o->expr->expr; $sortDirection[] = $o->type->value; }

Check warning on line 3106 in src/Display/Results.php

View workflow job for this annotation

GitHub Actions / Infection (8.2, ubuntu-latest)

Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ $sortDirection = []; if ($statement !== null && !empty($statement->order)) { foreach ($statement->order as $o) { - $sortExpression[] = $o->expr->expr . ' ' . $o->type->value; + $sortExpression[] = $o->expr->expr . $o->type->value; $sortExpressionNoDirection[] = $o->expr->expr; $sortDirection[] = $o->type->value; }

Check warning on line 3106 in src/Display/Results.php

View workflow job for this annotation

GitHub Actions / Infection (8.2, ubuntu-latest)

Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ $sortDirection = []; if ($statement !== null && !empty($statement->order)) { foreach ($statement->order as $o) { - $sortExpression[] = $o->expr->expr . ' ' . $o->type->value; + $sortExpression[] = $o->expr->expr . ' '; $sortExpressionNoDirection[] = $o->expr->expr; $sortDirection[] = $o->type->value; }

Check warning on line 3106 in src/Display/Results.php

View workflow job for this annotation

GitHub Actions / Infection (8.2, ubuntu-latest)

Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ $sortDirection = []; if ($statement !== null && !empty($statement->order)) { foreach ($statement->order as $o) { - $sortExpression[] = $o->expr->expr . ' ' . $o->type->value; + $sortExpression[] = $o->expr->expr . $o->type->value . ' '; $sortExpressionNoDirection[] = $o->expr->expr; $sortDirection[] = $o->type->value; }
$sortExpressionNoDirection[] = $o->expr->expr;
$sortDirection[] = $o->type;
$sortDirection[] = $o->type->value;
}
} else {
$sortExpression[] = '';
Expand Down

0 comments on commit f2de7c9

Please sign in to comment.