lithium\g11n\Locale::respondsTo PHP Method

respondsTo() public static method

Determines if a given method can be called.
public static respondsTo ( string $method, boolean $internal = false ) : boolean
$method string Name of the method.
$internal boolean Provide `true` to perform check from inside the class/object. When `false` checks also for public visibility; defaults to `false`.
return boolean Returns `true` if the method can be called, `false` otherwise.
    public static function respondsTo($method, $internal = false)
    {
        return isset(static::$_tags[$method]) || parent::respondsTo($method, $internal);
    }

Usage Example

Beispiel #1
0
 public function testRespondsToMagic()
 {
     $this->assertTrue(Locale::respondsTo('language'));
     $this->assertTrue(Locale::respondsTo('territory'));
     $this->assertFalse(Locale::respondsTo('foobar'));
 }