TSampleInterface.php 407 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Reflection\Test\Unit\Fixture;
  7. interface TSampleInterface
  8. {
  9. /**
  10. * Returns property name for a sample.
  11. *
  12. * @return string
  13. */
  14. public function getPropertyName();
  15. /**
  16. * Doc block without return tag.
  17. */
  18. public function getName();
  19. }