12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- namespace Symfony\Component\PropertyAccess;
- interface PropertyPathInterface extends \Traversable
- {
-
- public function __toString();
-
- public function getLength();
-
- public function getParent();
-
- public function getElements();
-
- public function getElement(int $index);
-
- public function isProperty(int $index);
-
- public function isIndex(int $index);
- }
|