lithium\tests\integration\data\Base::with PHP Method

with() public method

public with ( $adapters )
    public function with($adapters)
    {
        $type = $this->_dbConfig['adapter'] ?: $this->_dbConfig['type'];
        foreach ((array) $adapters as $adapter) {
            if ($type === $adapter) {
                return true;
            }
        }
        return false;
    }