Smile\ElasticsuiteCatalog\Setup\InstallSchema::install PHP Method

install() public method

Installs DB schema for the module
public install ( Magento\Framework\Setup\SchemaSetupInterface $setup, Magento\Framework\Setup\ModuleContextInterface $context ) : void
$setup Magento\Framework\Setup\SchemaSetupInterface The setup interface
$context Magento\Framework\Setup\ModuleContextInterface The module Context
return void
    public function install(SchemaSetupInterface $setup, ModuleContextInterface $context)
    {
        $setup->startSetup();
        $this->addEavCatalogFields($setup);
        $this->addIsSpellcheckedToSearchQuery($setup);
        $setup->endSetup();
    }