From 617e5ca6dadc889b4f56dd83b0cd98676482ec5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radovan=20Kep=C3=A1k?= Date: Tue, 13 Oct 2015 10:36:24 +0200 Subject: [PATCH] Updated docs Docs updated to new syntax, so people use new and not old deprecated one --- src/Dibi/Result.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Dibi/Result.php b/src/Dibi/Result.php index f9c894a8..c60ae832 100644 --- a/src/Dibi/Result.php +++ b/src/Dibi/Result.php @@ -18,8 +18,8 @@ namespace Dibi; * $value = $result->fetchSingle(); * $table = $result->fetchAll(); * $pairs = $result->fetchPairs(); - * $assoc = $result->fetchAssoc('id'); - * $assoc = $result->fetchAssoc('active,#,id'); + * $assoc = $result->fetchAssoc('col1'); + * $assoc = $result->fetchAssoc('col1[]col2->col3'); * * unset($result); *