From aabb47467882230b1c43780a2bdf304cc6e8d5f6 Mon Sep 17 00:00:00 2001 From: nine-rec Date: Fri, 27 May 2016 00:47:45 +0800 Subject: [PATCH] Update README.md Fix syntax error of README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 82ca0ed..1314a3b 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ new \Pixie\Connection('mysql', $config, 'MyAlias'); When not using an alias you can instantiate the QueryBuilder handler separately, helpful for Dependency Injection and Testing. ```PHP -$connection = new \Pixie\Connection('mysql', $config)); +$connection = new \Pixie\Connection('mysql', $config); $qb = new \Pixie\QueryBuilder\QueryBuilderHandler($connection); $query = $qb->table('my_table')->where('name', '=', 'Sana');