BaseModel.php 243 B

123456789101112131415
  1. <?php declare(strict_types=1);
  2. /**
  3. * DuckPhp
  4. * From this time, you never be alone~
  5. */
  6. namespace DuckPhpBenchmark\System;
  7. use DuckPhp\SingletonEx\SingletonEx;
  8. class BaseModel
  9. {
  10. use SingletonEx;
  11. // override or add your code here
  12. }