# windpress/3.0.13/vendor/symfony/property-access/PropertyPathIteratorInterface.php

WindPress – Tailwind CSS integration for WordPress, version 3.0.13. 35 lines.

- Page: https://pluginprobe.com/plugins/windpress/3.0.13/code/vendor/symfony/property-access/PropertyPathIteratorInterface.php
- Raw: https://pluginprobe.com/plugins/windpress/3.0.13/raw/vendor/symfony/property-access/PropertyPathIteratorInterface.php
- Modified: 2024-09-02T01:44:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/windpress/3.0.13/code/vendor/symfony/property-access/PropertyPathIteratorInterface.php#L10-L20`.

```php
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace WindPressDeps\Symfony\Component\PropertyAccess;

/**
 * @author Bernhard Schussek <bschussek@gmail.com>
 *
 * @extends \SeekableIterator<int, string>
 */
interface PropertyPathIteratorInterface extends \SeekableIterator
{
    /**
     * Returns whether the current element in the property path is an array
     * index.
     *
     * @return bool
     */
    public function isIndex();
    /**
     * Returns whether the current element in the property path is a property
     * name.
     *
     * @return bool
     */
    public function isProperty();
}

```
