N98\Magento\Command\Database\DumpCommand::getTableDefinitions PHP Method

getTableDefinitions() public method

Deprecation: Use database helper
public getTableDefinitions ( ) : array
return array
    public function getTableDefinitions()
    {
        $this->commandConfig = $this->getCommandConfig();
        if (is_null($this->tableDefinitions)) {
            /* @var $dbHelper DatabaseHelper */
            $dbHelper = $this->getHelper('database');
            $this->tableDefinitions = $dbHelper->getTableDefinitions($this->commandConfig);
        }
        return $this->tableDefinitions;
    }