From 483f27e83bae5323817c26aa297d923a4231dd6f Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Mon, 8 Apr 2019 01:27:27 +0900 Subject: [PATCH] Add missing highlighting (#21) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1913afe..225410b 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ You can insert records as record object or as an associative array. > Note that insert operation is not atomic. Use transactions to achieve integrity safety. -```` +````php require_once 'vendor/autoload.php' use org\majkel\dbase\Table; @@ -303,7 +303,7 @@ for ($i = 1; $i <= 3; ++$i) { You can create new table form existing table definition. -```` +````php require_once 'vendor/autoload.php' use org\majkel\dbase\Builder;