Codeception\Module\WPDb::increaseTermCountBy PHP Method

increaseTermCountBy() private method

private increaseTermCountBy ( $termTaxonomyId, $by = 1 )
    private function increaseTermCountBy($termTaxonomyId, $by = 1)
    {
        $updateQuery = "UPDATE {$this->grabTermTaxonomyTableName()} SET count = count + {$by} WHERE term_taxonomy_id = {$termTaxonomyId}";
        return $this->driver->executeQuery($updateQuery, []);
    }
WPDb