Skip to content

Commit

Permalink
Fix typo for $parent_instance param in `RecursiveDataStructureTrave…
Browse files Browse the repository at this point in the history
…rser` constructor
  • Loading branch information
petitphp committed Sep 7, 2023
1 parent be63876 commit c11bf4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WP_CLI/Entity/RecursiveDataStructureTraverser.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class RecursiveDataStructureTraverser {
*
* @param mixed $data The data to read/manipulate by reference.
* @param string|int $key The key/property the data belongs to.
* @param static $parent
* @param static $parent_instance
*/
public function __construct( &$data, $key = null, $parent_instance = null ) {
$this->data =& $data;
Expand Down

0 comments on commit c11bf4d

Please sign in to comment.