Skip to content

Commit

Permalink
(php82) Builder\Collection - Fix warning
Browse files Browse the repository at this point in the history
Deprecated: Creation of dynamic property CRM\CivixBundle\Builder\Collection::$builders is deprecated in /home/totten/src/civix/src/CRM/CivixBundle/Builder/Collection.php on line 12
  • Loading branch information
totten committed Mar 12, 2024
1 parent e767c0f commit 744d298
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/CRM/CivixBundle/Builder/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
* A collection of builders
*/
class Collection implements Builder {

/**
* @var array
*/
public $builders;

public function __construct($builders = []) {
$this->builders = $builders;
}
Expand Down

0 comments on commit 744d298

Please sign in to comment.