DemoComponent.php 445 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Link : http://www.phpcorner.net
  4. * User : qingbing<780042175@qq.com>
  5. * Date : 2018-12-05
  6. * Version : 1.0
  7. */
  8. namespace TestClass;
  9. use Abstracts\Component;
  10. class DemoComponent extends Component
  11. {
  12. /* @var mixed 属性一 */
  13. public $name;
  14. /* @var mixed 属性二 */
  15. public $version;
  16. /**
  17. * 属性赋值后执行函数
  18. */
  19. public function init()
  20. {
  21. }
  22. }