Skip to content

Commit

Permalink
Update array syntax in the readme (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen authored Jun 17, 2024
1 parent 59f4d3b commit 83bc234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ provide `array_node_1` as the argument for the `$breadcrumbPath` parameter of th
public function processed_configuration_for_array_node_1(): void
{
$this->assertProcessedConfigurationEquals(
array(
[
['array_node_1' => ['required_value_1' => 'original value']],
['array_node_1' => ['required_value_1' => 'final value']]
),
],
[
'array_node_1' => [
'required_value_1' => 'final value'
Expand Down

0 comments on commit 83bc234

Please sign in to comment.