Skip to content

Commit

Permalink
Fixed parse error in example skeleton file
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/MDB/trunk@271102 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
CloCkWeRX committed Dec 13, 2008
1 parent da3b358 commit 976959a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions doc/skeleton.php
Expand Up @@ -585,15 +585,15 @@ function freeResult($result)
// }}} // }}}
// {{{ get*Declaration() // {{{ get*Declaration()


// take phpdoc comments from MDB common.php: get*Declaration() // take phpdoc comments from MDB common.php: getFooDeclaration()


function get*Declaration($name, $field) function getFooDeclaration($name, $field)
{ {
// take this from the corresponding Metabase driver: Get*FieldValue() // take this from the corresponding Metabase driver: GetFooFieldValue()
} }


// }}} // }}}
// {{{ get*Value() // {{{ getFooValue()


/** /**
* Convert a text value into a DBMS specific format that is suitable to * Convert a text value into a DBMS specific format that is suitable to
Expand All @@ -606,9 +606,9 @@ function get*Declaration($name, $field)
* a DBMS specific format. * a DBMS specific format.
* @access public * @access public
*/ */
function get*Value($prepared_query, $parameter, $clob) function getFooValue($prepared_query, $parameter, $clob)
{ {
// take this from the corresponding Metabase driver: Get*FieldValue() // take this from the corresponding Metabase driver: GetFooFieldValue()
} }


// }}} // }}}
Expand Down Expand Up @@ -768,4 +768,4 @@ function tableInfo($result, $mode = NULL) {
} }
} }


?> ?>

0 comments on commit 976959a

Please sign in to comment.