/home/techb158/public_html/wp-content/plugins/kirki/libraries/framework/Database
Edit: /home/techb158/public_html/wp-content/plugins/kirki/libraries/framework/Database/Seeder.php (2084B)
make($class);
}
/**
* Run the seeder
*
* @return void
*
* @since 1.0.0
*/
public function run()
{
//
}
/**
* Run the seeders
*
* @return void
*
* @since 1.0.0
*/
public function __invoke()
{
try {
while (!empty(static::$called)) {
$seeder = \array_shift(static::$called);
$this->resolve($seeder)->run();
static::$resolved[$seeder] = \true;
}
} catch (Throwable $exception) {
throw $exception;
}
}
}