hedronium\Jables\commands\Check::check PHP Method

check() public method

public check ( )
    public function check()
    {
        $this->info('Checking for Schema Errors...');
        dump($this->checker->schemaError());
        $this->info('Checking for Foreign key Constraint Errors...');
        $this->checker->foreignKeyError();
        $this->info('Checking for Unique Constraint Errors...');
        $this->checker->uniqueError();
        $this->info('--------------------------');
        $this->info('Looks Fine.');
        return true;
    }