BaseModel.php 253 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\SingletonExTrait;
  8. class BaseModel
  9. {
  10. use SingletonExTrait;
  11. // override or add your code here
  12. }