isClassMethod() public méthode

Is the object a class method?
public isClassMethod ( ) : boolean
Résultat boolean
Exemple #1
0
 /**
  * @covers \PHPSA\ScopePointer::isClassMethod()
  * @dataProvider notClassMethodDataProvider
  */
 public function testIsNotClassMethod($object)
 {
     $scopePointer = new ScopePointer($object);
     $this->assertFalse($scopePointer->isClassMethod());
 }