From 913567e0bf233a791f10db3c546a538b462c62c2 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Thu, 12 Apr 2007 16:34:33 +0000 Subject: [PATCH] Fix tabs to spaces. --- manual/codes/DQL (Doctrine Query Language) - DELETE queries.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php b/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php index 6f2c317a0..a2a2398f0 100644 --- a/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php +++ b/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php @@ -8,7 +8,7 @@ $rows = $this->conn->query($q, array(3)); $q = new Doctrine_Query(); $rows = $q->delete('Account') - ->from('Account a') + ->from('Account a') ->where('a.id > ?', 3) ->execute();