Skip to content

Commit afca0f7

Browse files
committed
Update README.md
1 parent 6827970 commit afca0f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is [__version 4__](https://github.com/ezSQL/ezSQL/tree/v4) that has many mo
1313

1414
This library has an `Database` class, a combination of the [Factory](https://en.wikipedia.org/wiki/Factory_method_pattern) pattern with an [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) container hosting. The library is following many OOP principles, one in which, properties public access has been removed.
1515

16-
- More Todo...
16+
* More Todo...
1717

1818
For an full overview see [documentation Wiki](https://github.com/ezSQL/ezSQL/WIKI.md), which is not completely finish.
1919

@@ -26,16 +26,16 @@ For an full overview see [documentation Wiki](https://github.com/ezSQL/ezSQL/WIK
2626
```php
2727
require 'vendor/autoload.php';
2828

29-
// '****' is one of **mysqli**, **pgsql**, **sqlsrv**, **sqlite3**, or **Pdo**.
29+
// **** is one of mysqli, pgsql, sqlsrv, sqlite3, or Pdo.
3030
use ezsql\Database;
3131

32-
$db = Database::initialize('****', [$dsn_path_user, $password, $database, $or, $other_settings], $optional_instance_tag);
32+
$db = Database::initialize('****', [$dsn_path_user, $password, $database, $other_settings], $optional_tag);
3333

3434
// Is same as:
3535
use ezsql\Config;
3636
use ezsql\Database\ez_****;
3737

38-
$setting = new Config('****', [$dsn_path_user, $password, $database, $or, $other_settings]);
38+
$setting = new Config('****', [$dsn_path_user, $password, $database, $other_settings]);
3939

4040
$db = new ez_****($settings);
4141
```

0 commit comments

Comments
 (0)