TestMenu.php 488 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fec\block;
  10. use Yii;
  11. /**
  12. * @author Terry Zhao <2358269014@qq.com>
  13. * @since 1.0
  14. */
  15. class TestMenu
  16. {
  17. public $terry1;
  18. public $terry2;
  19. public function getLastData()
  20. {
  21. $arr = [
  22. 'terry1' =>$this->terry1,
  23. 'terry2' =>$this->terry2,
  24. ];
  25. return $arr;
  26. }
  27. }