1
0
mirror of synced 2025-02-02 21:41:45 +03:00

#1515 removing redundant assignment, short array notation

This commit is contained in:
Marco Pivetta 2017-06-24 03:27:12 +02:00
parent 9eb2d6139e
commit aba486ea2d
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -212,8 +212,10 @@ abstract class AbstractHydrator
$this->_cache = [];
$this->_metadataCache = [];
$evm = $this->_em->getEventManager();
$evm->removeEventListener(array(Events::onClear), $this);
$this
->_em
->getEventManager()
->removeEventListener([Events::onClear], $this);
}
/**