summaryrefslogtreecommitdiff
path: root/app/Statement.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-01-17 18:03:39 +0000
committerGreg Roach <fisharebest@gmail.com>2016-01-17 18:03:39 +0000
commitad2f0e13109a624a158c7532c312bc08f1d45af8 (patch)
tree3e13097a0c086e5d82c64ea49bd0eef7827c3440 /app/Statement.php
parenta6762289f3e1aa394a2721a82ffef93958cd133f (diff)
downloadwebtrees-ad2f0e13109a624a158c7532c312bc08f1d45af8.tar.gz
webtrees-ad2f0e13109a624a158c7532c312bc08f1d45af8.tar.bz2
webtrees-ad2f0e13109a624a158c7532c312bc08f1d45af8.zip
Two spaces have no effect in HTML
Diffstat (limited to 'app/Statement.php')
-rw-r--r--app/Statement.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/Statement.php b/app/Statement.php
index 9e99422468..d384eed9ed 100644
--- a/app/Statement.php
+++ b/app/Statement.php
@@ -52,7 +52,7 @@ class Statement {
}
// Parameters may be either named (e.g. :foo) or positional (e.g. ?).
- // Named parameters may take any type. Positional parameters are always strings.
+ // Named parameters may take any type. Positional parameters are always strings.
// Queries should use one format or the other.
foreach ($bind_variables as $key => $bind_variable) {
if (is_numeric($key)) {
@@ -101,7 +101,7 @@ class Statement {
/**
* Fetch the next row from the cursor.
*
- * Execute the query, if necessary. Typically when there are no parameters.
+ * Execute the query, if necessary. Typically when there are no parameters.
*
* @param int $fetch_style
*
@@ -118,7 +118,7 @@ class Statement {
/**
* Fetch all rows from the cursor, and close it.
*
- * Execute the query, if necessary. Typically when there are no parameters.
+ * Execute the query, if necessary. Typically when there are no parameters.
*
* @param int $fetch_style
*
@@ -136,9 +136,9 @@ class Statement {
}
/**
- * Fetch one row, and close the cursor. e.g. SELECT * FROM foo WHERE pk=bar
+ * Fetch one row, and close the cursor. e.g. SELECT * FROM foo WHERE pk=bar
*
- * Execute the query, if necessary. Typically when there are no parameters.
+ * Execute the query, if necessary. Typically when there are no parameters.
*
* @param int $fetch_style
*
@@ -156,9 +156,9 @@ class Statement {
}
/**
- * Fetch one value and close the cursor. e.g. SELECT MAX(foo) FROM bar
+ * Fetch one value and close the cursor. e.g. SELECT MAX(foo) FROM bar
*
- * Execute the query, if necessary. Typically when there are no parameters.
+ * Execute the query, if necessary. Typically when there are no parameters.
*
* @return string|null
*/
@@ -176,7 +176,7 @@ class Statement {
/**
* Fetch two columns, and return an associative array of col1=>col2
*
- * Execute the query, if necessary. Typically when there are no parameters.
+ * Execute the query, if necessary. Typically when there are no parameters.
*
* @return string[]
*/
@@ -197,7 +197,7 @@ class Statement {
/**
* Fetch all the first column, as an array.
*
- * Execute the query, if necessary. Typically when there are no parameters.
+ * Execute the query, if necessary. Typically when there are no parameters.
*
* @return string[]
*/