Bolt\Storage\Database\Schema\Manager::check PHP Метод

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

Run a check against current and configured schemas.
public check ( ) : SchemaCheck
Результат SchemaCheck
    public function check()
    {
        $fromTables = $this->getInstalledTables();
        $toTables = $this->getSchemaTables();
        $response = $this->getSchemaComparator()->compare($fromTables, $toTables, $this->app['schema.content_tables']->keys());
        if (!$response->hasResponses()) {
            $this->getSchemaTimer()->setCheckExpiry();
        }
        return $response;
    }