function SplFileInfoPatch::nodeIsSplFileObject
Parameters
ClassNode $node:
Return value
boolean
1 call to SplFileInfoPatch::nodeIsSplFileObject()
- SplFileInfoPatch::apply in vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ ClassPatch/ SplFileInfoPatch.php - Updated constructor code to call parent one with dummy file argument.
File
-
vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ ClassPatch/ SplFileInfoPatch.php, line 103
Class
- SplFileInfoPatch
- SplFileInfo patch. Makes SplFileInfo and derivative classes usable with Prophecy.
Namespace
Prophecy\Doubler\ClassPatchCode
private function nodeIsSplFileObject(ClassNode $node) {
$parent = $node->getParentClass();
return 'SplFileObject' === $parent || is_subclass_of($parent, 'SplFileObject');
}