loadFixtures() protected static method

This method is only called if create Schema is set to true Only load fixtures if loadFixtures() is set to true. All other methods will be loaded if this one is loaded. Otherwise, will return.
protected static loadFixtures ( )
 /**
  * load fixtures method
  *
  * This method is only called if create Schema is set to true
  *
  * Only load fixtures if loadFixtures() is set to true.
  * All other methods will be loaded if this one is loaded.
  *
  * Otherwise, will return.
  *
  * @return $this Self object
  */
 protected function loadFixtures()
 {
     parent::loadFixtures();
     self::$application->run(new ArrayInput(['command' => 'elcodi:plugins:load', '--no-interaction' => true, '--quiet' => true]));
 }