function ClassNode::isExtendable
Parameters
string $method:
Return value
bool
2 calls to ClassNode::isExtendable()
- ClassNode::addMethod in vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ Generator/ Node/ ClassNode.php - ClassNode::addUnextendableMethod in vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ Generator/ Node/ ClassNode.php
File
-
vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ Generator/ Node/ ClassNode.php, line 220
Class
- ClassNode
- Class node.
Namespace
Prophecy\Doubler\Generator\NodeCode
public function isExtendable($method) {
return !in_array($method, $this->unextendableMethods);
}