From ae4f73ecb6cf787f4a1de629f9c7b76bd7f90c78 Mon Sep 17 00:00:00 2001 From: IgorMino Date: Wed, 28 May 2025 18:14:39 +0200 Subject: [PATCH] added code types into README --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 62acce1..fd17211 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,7 @@ This library extends the builtin PDO object by several useful features. For testing create database `test` with user `test` and password `test`. In database create table `test` and insert same testing data. -``` - +```sql CREATE TABLE `test` ( `id` int(11) PRIMARY KEY NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, @@ -18,7 +17,7 @@ CREATE TABLE `test` ( For basic testing run this code -``` +```php interact(); now for each table run `php createModel.php` for interactive creating class for table. -``` +```bash $ php test2.php New model name: Test Table name: test @@ -82,7 +81,7 @@ Creating MODEL class ... MODEL class created Creator build this MODEL class file -``` +```php