for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MySQLReplication\Event\DTO;
use MySQLReplication\Definitions\ConstEventsNames;
/**
* Class WriteRowsDTO
* @package MySQLReplication\DTO
*/
class WriteRowsDTO extends RowsDTO
{
* @var string
protected $type = ConstEventsNames::WRITE;
* @return string
public function getType()
return $this->type;
}