Skip to content

Commit

Permalink
5177 use var_dump() in components
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Snoek authored and wouterj committed Jun 27, 2015
1 parent 9fa1c11 commit 37db975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/property_access/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ You can also use multi dimensional arrays::
)
);

dump($accessor->getValue($persons, '[0][first_name]')); // 'Wouter'
dump($accessor->getValue($persons, '[1][first_name]')); // 'Ryan'
var_dump($accessor->getValue($persons, '[0][first_name]')); // 'Wouter'
var_dump($accessor->getValue($persons, '[1][first_name]')); // 'Ryan'

Reading from Objects
--------------------
Expand Down

0 comments on commit 37db975

Please sign in to comment.