PHP初心者です。
FuelPHPのソースコードリーディングをしていたところ、Requestクラスのforgeメソッドに↓のような記述がありました。

is_bool($options) and $options = array('route' => $options);
is_string($options) and $options = array('driver' => $options);

この記述はどういう意味になるのでしょうか?
よろしくお願いします。

↓リクエストクラスの全文はこちらです。

public static function forge($uri = null, $options = true, $method = null)
{
    is_bool($options) and $options = array('route' => $options);
    is_string($options) and $options = array('driver' => $options);

    if ( ! empty($options['driver']))
    {
        $class = \Inflector::words_to_upper('Request_'.$options['driver']);
        return $class::forge($uri, $options, $method);
    }

    $request = new static($uri, isset($options['route']) ? $options['route'] : true, $method);
    if (static::$active)
    {
        $request->parent = static::$active;
        static::$active->children[] = $request;
    }

    // fire any request created events
    \Event::instance()->has_events('request_created') and \Event::instance()->trigger('request_created', '', 'none');

    return $request;
}