Skip to content

Commit

Permalink
Fix doctrine-extensions#2043 Remove PHP 5.4 short array notation
Browse files Browse the repository at this point in the history
  • Loading branch information
AkenRoberts committed Aug 29, 2019
1 parent 92ab6b0 commit 26b8728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Gedmo/Sortable/SortableListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ public function postFlush(EventArgs $args)
$ea = $this->getEventAdapter($args);
$em = $ea->getObjectManager();

$updatedObjects = [];
$updatedObjects = array();

foreach ($this->relocations as $hash => $relocation) {
$config = $this->getConfiguration($em, $relocation['name']);
Expand Down

0 comments on commit 26b8728

Please sign in to comment.