LukePOLO\LaraCart\LaraCartServiceProvider::migrationHasAlreadyBeenPublished PHP Метод

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

Checks to see if the migration has already been published.
protected migrationHasAlreadyBeenPublished ( ) : boolean
Результат boolean
    protected function migrationHasAlreadyBeenPublished()
    {
        $files = glob(database_path('migrations/*_add_cart_session_id_to_users_table.php'));
        return count($files) > 0;
    }