/**
  * Add a fixture to be loaded into the database.
  *
  * @param FixtureInterface $fixture
  */
 public function addFixture(FixtureInterface $fixture)
 {
     $this->dropTables = array_merge($this->dropTables, (array) $fixture->getTables());
     $this->fixtures[] = $fixture;
 }