class TraversablePatch in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php \Prophecy\Doubler\ClassPatch\TraversablePatch
Traversable interface patch. Forces classes that implement interfaces, that extend Traversable to also implement Iterator.
@author Konstantin Kudryashov <ever.zet@gmail.com>
Hierarchy
- class \Prophecy\Doubler\ClassPatch\TraversablePatch implements ClassPatchInterface
Expanded class hierarchy of TraversablePatch
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Doubler/ ClassPatch/ TraversablePatch.php, line 23
Namespace
Prophecy\Doubler\ClassPatchView source
class TraversablePatch implements ClassPatchInterface {
/**
* Supports nodetree, that implement Traversable, but not Iterator or IteratorAggregate.
*
* @param ClassNode $node
*
* @return bool
*/
public function supports(ClassNode $node) {
if (in_array('Iterator', $node
->getInterfaces())) {
return false;
}
if (in_array('IteratorAggregate', $node
->getInterfaces())) {
return false;
}
foreach ($node
->getInterfaces() as $interface) {
if ('Traversable' !== $interface && !is_subclass_of($interface, 'Traversable')) {
continue;
}
if ('Iterator' === $interface || is_subclass_of($interface, 'Iterator')) {
continue;
}
if ('IteratorAggregate' === $interface || is_subclass_of($interface, 'IteratorAggregate')) {
continue;
}
return true;
}
return false;
}
/**
* Forces class to implement Iterator interface.
*
* @param ClassNode $node
*/
public function apply(ClassNode $node) {
$node
->addInterface('Iterator');
$node
->addMethod(new MethodNode('current'));
$node
->addMethod(new MethodNode('key'));
$node
->addMethod(new MethodNode('next'));
$node
->addMethod(new MethodNode('rewind'));
$node
->addMethod(new MethodNode('valid'));
}
/**
* Returns patch priority, which determines when patch will be applied.
*
* @return int Priority number (higher - earlier)
*/
public function getPriority() {
return 100;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TraversablePatch:: |
public | function |
Forces class to implement Iterator interface. Overrides ClassPatchInterface:: |
|
TraversablePatch:: |
public | function |
Returns patch priority, which determines when patch will be applied. Overrides ClassPatchInterface:: |
|
TraversablePatch:: |
public | function |
Supports nodetree, that implement Traversable, but not Iterator or IteratorAggregate. Overrides ClassPatchInterface:: |