@@ -54,8 +54,8 @@ |
||
54 | 54 | if (!$handle) { |
55 | 55 | throw new DatasetException("Socket error: $errstr ($errno)"); |
56 | 56 | } else { |
57 | - $out = "GET " . $this->_path . " HTTP/1.1\r\n"; |
|
58 | - $out .= "Host: " . $this->_server . "\r\n"; |
|
57 | + $out = "GET ".$this->_path." HTTP/1.1\r\n"; |
|
58 | + $out .= "Host: ".$this->_server."\r\n"; |
|
59 | 59 | $out .= "Connection: Close\r\n\r\n"; |
60 | 60 | |
61 | 61 | fwrite($handle, $out); |
@@ -42,10 +42,10 @@ discard block |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | $this->_rows = array(); |
45 | - $rowsaux = preg_split("/" . $this->_rowsep . "/", $linha); |
|
45 | + $rowsaux = preg_split("/".$this->_rowsep."/", $linha); |
|
46 | 46 | sort($rowsaux); |
47 | 47 | foreach ($rowsaux as $key => $value) { |
48 | - $colsaux = preg_split("/" . $this->_colsep . "/", $value); |
|
48 | + $colsaux = preg_split("/".$this->_colsep."/", $value); |
|
49 | 49 | if (sizeof($colsaux) == sizeof($fieldnames)) { |
50 | 50 | $this->_rows[] = $value; |
51 | 51 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function moveNext() |
80 | 80 | { |
81 | - $cols = preg_split("/" . $this->_colsep . "/", $this->_rows[$this->_current]); |
|
81 | + $cols = preg_split("/".$this->_colsep."/", $this->_rows[$this->_current]); |
|
82 | 82 | $this->_current++; |
83 | 83 | |
84 | 84 | $sr = new SingleRow(); |
@@ -47,7 +47,7 @@ |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | if ($lastError != JSON_ERROR_NONE) { |
50 | - throw new DatasetException("Invalid JSON string: " . $lastErrorDesc); |
|
50 | + throw new DatasetException("Invalid JSON string: ".$lastErrorDesc); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 |
@@ -218,7 +218,7 @@ |
||
218 | 218 | if (is_array($this->_row)) { |
219 | 219 | return json_decode(json_encode($this->_row)); |
220 | 220 | } else { |
221 | - throw new UnexpectedValueException('I expected that getRawFormat is array() but ' . gettype($this->_row) . ' was given'); |
|
221 | + throw new UnexpectedValueException('I expected that getRawFormat is array() but '.gettype($this->_row).' was given'); |
|
222 | 222 | } |
223 | 223 | } |
224 | 224 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | if (function_exists('dba_open')) { |
30 | - $cache = sys_get_temp_dir() . "/caps.db"; |
|
30 | + $cache = sys_get_temp_dir()."/caps.db"; |
|
31 | 31 | $this->_db->capabilityCache($cache); |
32 | 32 | } |
33 | 33 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | $this->_source = $source; |
41 | 41 | |
42 | 42 | if (!file_exists($this->_source)) { |
43 | - throw new NotFoundException("The specified file " . $this->_source . " does not exists"); |
|
43 | + throw new NotFoundException("The specified file ".$this->_source." does not exists"); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | $this->_sourceType = "FILE"; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | if (!preg_match("~^https?://~", $source)) { |
40 | 40 | if (!file_exists($this->_source)) { |
41 | - throw new NotFoundException("The specified file " . $this->_source . " does not exists"); |
|
41 | + throw new NotFoundException("The specified file ".$this->_source." does not exists"); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | $this->_sourceType = "FILE"; |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | if (!$handle) { |
76 | 76 | throw new DatasetException("TextFileDataset Socket error: $errstr ($errno)"); |
77 | 77 | } else { |
78 | - $out = "GET " . $urlParts[4] . " HTTP/1.1\r\n"; |
|
79 | - $out .= "Host: " . $urlParts[2] . "\r\n"; |
|
78 | + $out = "GET ".$urlParts[4]." HTTP/1.1\r\n"; |
|
79 | + $out .= "Host: ".$urlParts[2]."\r\n"; |
|
80 | 80 | $out .= "Connection: Close\r\n\r\n"; |
81 | 81 | |
82 | 82 | fwrite($handle, $out); |
@@ -48,11 +48,11 @@ |
||
48 | 48 | |
49 | 49 | // Define the query key |
50 | 50 | if (is_array($arKey2) && count($arKey2) > 0) { |
51 | - $key2 = ":" . md5(json_encode($arKey2)); |
|
51 | + $key2 = ":".md5(json_encode($arKey2)); |
|
52 | 52 | } else { |
53 | 53 | $key2 = ""; |
54 | 54 | } |
55 | - $key = "qry:" . $key1 . $key2; |
|
55 | + $key = "qry:".$key1.$key2; |
|
56 | 56 | |
57 | 57 | // Get the CACHE |
58 | 58 | $cache = $this->_cacheEngine->get($key, $ttl); |
@@ -92,9 +92,9 @@ |
||
92 | 92 | $fieldDef = $fieldDefinition[$i]; |
93 | 93 | |
94 | 94 | $fields[$fieldDef->fieldName] = substr($buffer, $fieldDef->startPos, $fieldDef->length); |
95 | - if (!empty($fieldDef->requiredValue) && (!preg_match("/^[" . $fieldDef->requiredValue . "]$/", |
|
95 | + if (!empty($fieldDef->requiredValue) && (!preg_match("/^[".$fieldDef->requiredValue."]$/", |
|
96 | 96 | $fields[$fieldDef->fieldName]))) { |
97 | - throw new IteratorException("Expected the value '" . $fieldDef->requiredValue . "' and I got '" . $fields[$fieldDef->fieldName] . "'"); |
|
97 | + throw new IteratorException("Expected the value '".$fieldDef->requiredValue."' and I got '".$fields[$fieldDef->fieldName]."'"); |
|
98 | 98 | } elseif (is_array($fieldDef->subTypes)) { |
99 | 99 | $fields[$fieldDef->fieldName] = $this->processBuffer($fields[$fieldDef->fieldName], $fieldDef->subTypes); |
100 | 100 | } |