SqliteDsn.php 251 B

1234567891011121314151617181920
  1. <?php
  2. namespace common\helpers\Dsn;
  3. use common\helpers\Dsn;
  4. /**
  5. * SqliteDsn
  6. *
  7. */
  8. class SqliteDsn extends Dsn
  9. {
  10. protected function parseDsn()
  11. {
  12. $this->parseDsn['database'] = $this->parse_url['path'];
  13. return true;
  14. }
  15. }