Codeception\Module\WPDb::haveTransientInDatabase PHP Method

haveTransientInDatabase() public method

If the value is an array or an object then the value will be serialized.
public haveTransientInDatabase ( string $transient, mixed $value ) : integer
$transient string
$value mixed
return integer The inserted option `option_id`.
    public function haveTransientInDatabase($transient, $value)
    {
        return $this->haveOptionInDatabase('_transient_' . $transient, $value);
    }
WPDb