控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PropertyPathIteratorInterface.php 791B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\PropertyAccess;
  11. /**
  12. * @author Bernhard Schussek <bschussek@gmail.com>
  13. *
  14. * @extends \SeekableIterator<int, string>
  15. */
  16. interface PropertyPathIteratorInterface extends \SeekableIterator
  17. {
  18. /**
  19. * Returns whether the current element in the property path is an array
  20. * index.
  21. *
  22. * @return bool
  23. */
  24. public function isIndex();
  25. /**
  26. * Returns whether the current element in the property path is a property
  27. * name.
  28. *
  29. * @return bool
  30. */
  31. public function isProperty();
  32. }