SearchResult.php 296 B

123456789101112131415
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Data\Test\Unit\Stub;
  7. use Magento\Framework\Data\AbstractSearchResult;
  8. class SearchResult extends AbstractSearchResult
  9. {
  10. public function init()
  11. {
  12. }
  13. }