LazyRecord\Command\BasedataCommand::execute PHP Метод

execute() публичный Метод

public execute ( )
    public function execute()
    {
        $options = $this->options;
        $logger = $this->logger;
        $classes = SchemaUtils::findSchemasByArguments($this->getConfigLoader(), func_get_args(), $this->logger);
        SchemaUtils::printSchemaClasses($classes, $this->logger);
        $collection = new SchemaCollection($classes);
        $collection = $collection->evaluate();
        $seedBuilder = new SeedBuilder($this->logger);
        $seedBuilder->build($collection);
        $seedBuilder->buildConfigSeeds($this->getConfigLoader());
        $this->logger->info('Done');
    }
BasedataCommand