Skip to content

Commit

Permalink
Make $elements propert private again
Browse files Browse the repository at this point in the history
I had changed this to be public,
but it looks like it doesn't need to be anymore.
  • Loading branch information
kienstra committed Nov 25, 2019
1 parent 873c41a commit 38df209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Component/DOMElementList.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final class DOMElementList implements IteratorAggregate, Countable {
*
* @var array
*/
public $elements = [];
private $elements = [];

/**
* Adds an element to the list, possibly with a caption.
Expand Down

0 comments on commit 38df209

Please sign in to comment.