@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | public function concat($str1, $str2 = null) |
11 | 11 | { |
12 | - return "concat(" . implode(func_get_args(), ', ') . ")"; |
|
12 | + return "concat(".implode(func_get_args(), ', ').")"; |
|
13 | 13 | } |
14 | 14 | |
15 | 15 | /** |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | if (stripos($sql, ' LIMIT ') === false) { |
29 | - $sql = $sql . " LIMIT x, y"; |
|
29 | + $sql = $sql." LIMIT x, y"; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | return preg_replace( |
33 | 33 | '~(\s[Ll][Ii][Mm][Ii][Tt])\s.*?,\s*.*~', |
34 | - '$1 ' . $start .', ' .$qty, |
|
34 | + '$1 '.$start.', '.$qty, |
|
35 | 35 | $sql |
36 | 36 | ); |
37 | 37 | } |
@@ -65,8 +65,7 @@ |
||
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Format date column in sql string given an input format that understands Y M D |
68 | - |
|
69 | -* |
|
68 | + * |
|
70 | 69 | *@param string $format |
71 | 70 | * @param bool|string $column |
72 | 71 | * @return string |
@@ -40,7 +40,7 @@ |
||
40 | 40 | |
41 | 41 | return preg_replace( |
42 | 42 | '~(\s[Tt][Oo][Pp])\s.*?\d+\s~', |
43 | - '$1 ' . $qty . ' ', |
|
43 | + '$1 '.$qty.' ', |
|
44 | 44 | $sql |
45 | 45 | ); |
46 | 46 | } |
@@ -26,12 +26,12 @@ |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | if (stripos($sql, ' LIMIT ') === false) { |
29 | - $sql = $sql . " LIMIT x OFFSET y"; |
|
29 | + $sql = $sql." LIMIT x OFFSET y"; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | return preg_replace( |
33 | 33 | '~(\s[Ll][Ii][Mm][Ii][Tt])\s.*?\s([Oo][Ff][Ff][Ss][Ee][Tt])\s.*~', |
34 | - '$1 ' . $qty .' $2 ' .$start, |
|
34 | + '$1 '.$qty.' $2 '.$start, |
|
35 | 35 | $sql |
36 | 36 | ); |
37 | 37 | } |
@@ -129,7 +129,7 @@ |
||
129 | 129 | return; |
130 | 130 | } |
131 | 131 | |
132 | - $sql = "INSERT INTO Dogs (Breed, Name, Age) VALUES ('Cat', 'Doris', 7); " . |
|
132 | + $sql = "INSERT INTO Dogs (Breed, Name, Age) VALUES ('Cat', 'Doris', 7); ". |
|
133 | 133 | "INSERT INTO Dogs (Breed, Name, Age) VALUES ('Dog', 'Lolla', 1); "; |
134 | 134 | |
135 | 135 | $idInserted = $this->dbDriver->executeAndGetId($sql); |
@@ -41,10 +41,10 @@ discard block |
||
41 | 41 | } |
42 | 42 | |
43 | 43 | $this->rows = array(); |
44 | - $rowsaux = preg_split("/" . $this->rowsep . "/", $linha); |
|
44 | + $rowsaux = preg_split("/".$this->rowsep."/", $linha); |
|
45 | 45 | sort($rowsaux); |
46 | 46 | foreach ($rowsaux as $value) { |
47 | - $colsaux = preg_split("/" . $this->colsep . "/", $value); |
|
47 | + $colsaux = preg_split("/".$this->colsep."/", $value); |
|
48 | 48 | if (count($colsaux) == count($fieldnames)) { |
49 | 49 | $this->rows[] = $value; |
50 | 50 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | */ |
78 | 78 | public function moveNext() |
79 | 79 | { |
80 | - $cols = preg_split("/" . $this->colsep . "/", $this->rows[$this->current]); |
|
80 | + $cols = preg_split("/".$this->colsep."/", $this->rows[$this->current]); |
|
81 | 81 | $this->current++; |
82 | 82 | |
83 | 83 | $sr = new Row(); |
@@ -13,7 +13,6 @@ discard block |
||
13 | 13 | * Anydataset files have extension ".anydata.xml" and have many classes to put and get data into anydataset xml file. |
14 | 14 | * Anydataset class just read and write files. To search elements you need use AnyIterator |
15 | 15 | * and IteratorFilter. Each row have a class Row. |
16 | - |
|
17 | 16 | * XML Structure |
18 | 17 | * <code> |
19 | 18 | * <anydataset> |
@@ -28,17 +27,14 @@ discard block |
||
28 | 27 | * </row> |
29 | 28 | * </anydataset> |
30 | 29 | * </code> |
31 | - |
|
32 | 30 | * How to use: |
33 | 31 | * <code> |
34 | 32 | * $any = new AnyDataset(); |
35 | 33 | * </code> |
36 | - |
|
37 | 34 | * |
38 | 35 | *@see Row |
39 | 36 | * @see AnyIterator |
40 | 37 | * @see IteratorFilter |
41 | - |
|
42 | 38 | */ |
43 | 39 | class AnyDataset |
44 | 40 | { |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | foreach ($fields as $field) { |
106 | 106 | $attr = $field->attributes->getNamedItem("name"); |
107 | 107 | if (is_null($attr)) { |
108 | - throw new \InvalidArgumentException('Malformed anydataset file ' . basename($filepath)); |
|
108 | + throw new \InvalidArgumentException('Malformed anydataset file '.basename($filepath)); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | $sr->addField($attr->nodeValue, $field->nodeValue); |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | $left = $right = array(); |
327 | 327 | |
328 | 328 | $cntSeq = count($seq); |
329 | - for ($i = 1; $i < $cntSeq; $i ++) { |
|
329 | + for ($i = 1; $i < $cntSeq; $i++) { |
|
330 | 330 | if ($seq[$i]->get($field) <= $key->get($field)) { |
331 | 331 | $left[] = $seq[$i]; |
332 | 332 | } else { |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | |
337 | 337 | return array_merge( |
338 | 338 | $this->quickSortExec($left, $field), |
339 | - [ $key ], |
|
339 | + [$key], |
|
340 | 340 | $this->quickSortExec($right, $field) |
341 | 341 | ); |
342 | 342 | } |
@@ -219,7 +219,7 @@ |
||
219 | 219 | if (is_array($this->row)) { |
220 | 220 | return json_decode(json_encode($this->row)); |
221 | 221 | } else { |
222 | - throw new UnexpectedValueException('I expected that getRawFormat is array() but ' . gettype($this->row) . ' was given'); |
|
222 | + throw new UnexpectedValueException('I expected that getRawFormat is array() but '.gettype($this->row).' was given'); |
|
223 | 223 | } |
224 | 224 | } |
225 | 225 |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | if (isset($pattern[$value])) { |
93 | 93 | $formatted = $pattern[$value]; |
94 | 94 | } else { |
95 | - $formatted = $delimitString . $value . $delimitString; |
|
95 | + $formatted = $delimitString.$value.$delimitString; |
|
96 | 96 | } |
97 | 97 | $prepareString[$key] = $formatted; |
98 | 98 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | foreach ((array)$field as $fld) { |
157 | 157 | $fldAr = explode('.', $fld); |
158 | 158 | $result[] = $this->deliFieldLeft |
159 | - . implode($this->deliFieldRight . '.' . $this->deliFieldLeft, $fldAr) |
|
159 | + . implode($this->deliFieldRight.'.'.$this->deliFieldLeft, $fldAr) |
|
160 | 160 | . $this->deliFieldRight; |
161 | 161 | } |
162 | 162 | |
@@ -172,14 +172,14 @@ discard block |
||
172 | 172 | $tableAr = explode('.', $table); |
173 | 173 | |
174 | 174 | return $this->deliTableLeft |
175 | - . implode($this->deliTableRight . '.' . $this->deliTableLeft, $tableAr) |
|
175 | + . implode($this->deliTableRight.'.'.$this->deliTableLeft, $tableAr) |
|
176 | 176 | . $this->deliTableRight; |
177 | 177 | } |
178 | 178 | |
179 | 179 | public function forUpdate($sql) |
180 | 180 | { |
181 | 181 | if (!preg_match('#\bfor update\b#i', $sql)) { |
182 | - $sql = $sql . " FOR UPDATE "; |
|
182 | + $sql = $sql." FOR UPDATE "; |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | return $sql; |