Microweber\Providers\DatabaseManager::q PHP Method

q() public method

public q ( $q, $silent = false )
    public function q($q, $silent = false)
    {
        if (!$silent) {
            return DB::statement($q);
        }
        try {
            return DB::statement($q);
        } catch (Exception $e) {
            return;
        } catch (QueryException $e) {
            return;
        } catch (\Illuminate\Database\QueryException $e) {
            return;
        }
    }