Migrations\Shell\Task\MigrationDiffTask::getTables PHP Метод

getTables() защищенный Метод

The method directly sets the diff in a property of the class.
protected getTables ( ) : void
Результат void
    protected function getTables()
    {
        $this->templateData['fullTables'] = ['add' => array_diff_key($this->currentSchema, $this->dumpSchema), 'remove' => array_diff_key($this->dumpSchema, $this->currentSchema)];
    }