Skip to content

Commit

Permalink
Merge pull request #8 from Stillat/analysis-Rvgnl9
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
JohnathonKoster authored Oct 24, 2021
2 parents a936626 + 53570b1 commit 116f1a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function safeSplitNamedString($string)

$splitValues[] = [
$value,
$name
$name,
];
}

Expand Down
4 changes: 2 additions & 2 deletions tests/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public function test_safe_split_named_string()

$this->assertCount(3, $result);
$this->assertSame(["'something'", null], $result[0]);
$this->assertSame(["[1, 2, 3]", "another"], $result[1]);
$this->assertSame(["env('test', 'hello')", "param"], $result[2]);
$this->assertSame(['[1, 2, 3]', 'another'], $result[1]);
$this->assertSame(["env('test', 'hello')", 'param'], $result[2]);
}
}

0 comments on commit 116f1a0

Please sign in to comment.