lithium\analysis\Logger::respondsTo PHP Méthode

respondsTo() public static méthode

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`.
Résultat boolean Returns `true` if the method can be called, `false` otherwise.
    public static function respondsTo($method, $internal = false)
    {
        return isset(static::$_priorities[$method]) || parent::respondsTo($method, $internal);
    }

Usage Example

 public function testRespondsToMagic()
 {
     $this->assertTrue(Logger::respondsTo('emergency'));
     $this->assertTrue(Logger::respondsTo('debug'));
     $this->assertFalse(Logger::respondsTo('foobar'));
 }