isClassMethod() публичный Метод

Is the object a class method?
public isClassMethod ( ) : boolean
Результат boolean
Пример #1
0
 /**
  * @covers \PHPSA\ScopePointer::isClassMethod()
  * @dataProvider notClassMethodDataProvider
  */
 public function testIsNotClassMethod($object)
 {
     $scopePointer = new ScopePointer($object);
     $this->assertFalse($scopePointer->isClassMethod());
 }