. */ namespace Doctrine\Common\DataFixtures; /** * DependentFixtureInterface needs to be implemented * by fixtures which depend on other fixtures * * @author Gustavo Adrian */ interface DependentFixtureInterface { /** * This method must return an array of fixtures classes * on which the implementing class depends on * * @return array */ public function getDependencies(); }