Pure PHP Implementation of MySQL replication protocol. This allow you to receive event like insert, update, delete with their data and raw SQL queries.
TypeError: Argument 3 passed to MySQLReplication\Event\Event::__construct() must be an instance of Symfony\Component\EventDispatcher\EventDispatcher, null given, called
Because Event class is instanciated with property $this->eventDispatcher but was only initialised when null is used in the constructor of MySQLReplicationFactory.
Before the fix, an error occurred:
Because
Event
class is instanciated with property$this->eventDispatcher
but was only initialised whennull
is used in the constructor ofMySQLReplicationFactory
.