TSample.php 411 B

12345678910111213141516171819202122232425
  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. class TSample implements TSampleInterface
  8. {
  9. /**
  10. * @inheritdoc
  11. */
  12. public function getPropertyName()
  13. {
  14. return '';
  15. }
  16. /**
  17. * @inheritdoc
  18. */
  19. public function getName()
  20. {
  21. return '';
  22. }
  23. }