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

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