Remove DBLite branding

This commit is contained in:
Sky Johnson 2024-07-01 13:58:37 -05:00
parent 2e524fb7d0
commit 9ddc05dd8a
2 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
<?php
/**
* DBLite wrapper class. Database provides a non-static interface to interact with a
* SQLite database wrapper class. Provides a non-static interface to interact with a
* SQLite database in as simple a way as possible.
*
* The DBLite wrapper provides a simple-to-use database API using PDO's SQLite driver.
* The wrapper provides a simple-to-use database API using PDO's SQLite driver.
* It was designed to have method signatures very close to Laravel's Eloquent ORM. There
* are not, however, any ORM features in the DBLite wrapper. These must be handled at
* are not, however, any ORM features in the wrapper. These must be handled at
* the model level.
*
* By default, foreign keys are enabled and the database is in WAL mode. In general

View File

@ -1,8 +1,8 @@
# DBLite
# Database
The DBLite wrapper provides a simple-to-use database API using PDO's SQLite driver.
This SQLite database wrapper provides a simple-to-use interface using PDO's SQLite driver.
It was designed to have method signatures very close to Laravel's Eloquent ORM. There
are not, however, any ORM features in the DBLite wrapper. These must be handled at
are not, however, any ORM features in this wrapper. These must be handled at
the model level.
By default, foreign keys are enabled and the database is in WAL mode. In general