Completed
Push — intl ( 51e284 )
by Fabio
06:51
created
framework/Data/SqlMap/DataMapper/TSqlMapTypeHandlerRegistry.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 	 */
48 48
 	public function registerTypeHandler(TSqlMapTypeHandler $handler)
49 49
 	{
50
-		$this->_typeHandlers[$handler->getType()] = $handler;
50
+		$this->_typeHandlers[$handler->getType()]=$handler;
51 51
 	}
52 52
 
53 53
 	/**
@@ -90,13 +90,13 @@  discard block
 block discarded – undo
90 90
 		switch(strtolower($type))
91 91
 		{
92 92
 			case 'integer': case 'int':
93
-				$type = 'integer'; break;
93
+				$type='integer'; break;
94 94
 			case 'float': case 'double': case 'decimal':
95
-				$type = 'float'; break;
95
+				$type='float'; break;
96 96
 			case 'boolean': case 'bool':
97
-				$type = 'boolean'; break;
97
+				$type='boolean'; break;
98 98
 			case 'string' :
99
-				$type = 'string'; break;
99
+				$type='string'; break;
100 100
 			default:
101 101
 				return $value;
102 102
 		}
Please login to merge, or discard this patch.
framework/Data/SqlMap/DataMapper/TFastSqlMapApplicationCache.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
 	public function __construct($cacheModel=null)
28 28
 	{
29
-		$this->_cacheModel = $cacheModel;
29
+		$this->_cacheModel=$cacheModel;
30 30
 	}
31 31
 
32 32
 	protected function getBaseKeyKeyName()
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
 
37 37
 	protected function getBaseKey()
38 38
 	{
39
-		$cache = $this->getCache();
40
-		$keyname = $this->getBaseKeyKeyName();
41
-		$basekey = $cache->get($keyname);
42
-		if (!$basekey)
39
+		$cache=$this->getCache();
40
+		$keyname=$this->getBaseKeyKeyName();
41
+		$basekey=$cache->get($keyname);
42
+		if(!$basekey)
43 43
 		{
44
-			$basekey = DxUtil::generateRandomHash(8);
45
-			$cache->set($keyname,$basekey);
44
+			$basekey=DxUtil::generateRandomHash(8);
45
+			$cache->set($keyname, $basekey);
46 46
 		}
47 47
 		return $basekey;
48 48
 	}
@@ -64,23 +64,23 @@  discard block
 block discarded – undo
64 64
 
65 65
 	public function get($key)
66 66
 	{
67
-		$result = $this->getCache()->get($this->getCacheKey($key));
68
-		return $result === false ? null : $result;
67
+		$result=$this->getCache()->get($this->getCacheKey($key));
68
+		return $result===false ? null : $result;
69 69
 	}
70 70
 
71
-	public function set($key, $value,$expire=0,$dependency=null)
71
+	public function set($key, $value, $expire=0, $dependency=null)
72 72
 	{
73
-		$this->getCache()->set($this->getCacheKey($key), $value, $expire,$dependency);
73
+		$this->getCache()->set($this->getCacheKey($key), $value, $expire, $dependency);
74 74
 	}
75 75
 
76 76
 	protected function getCache()
77 77
 	{
78
-		if (!$this->_cache)
79
-			$this->_cache = Prado::getApplication()->getCache();
78
+		if(!$this->_cache)
79
+			$this->_cache=Prado::getApplication()->getCache();
80 80
 		return $this->_cache;
81 81
 	}
82 82
 
83
-	public function add($id,$value,$expire=0,$dependency=null)
83
+	public function add($id, $value, $expire=0, $dependency=null)
84 84
 	{
85 85
 		throw new TSqlMapException('sqlmap_use_set_to_store_cache');
86 86
 	}
Please login to merge, or discard this patch.
framework/Data/SqlMap/Configuration/TSimpleDynamicParser.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@  discard block
 block discarded – undo
19 19
  */
20 20
 class TSimpleDynamicParser
21 21
 {
22
-	const PARAMETER_TOKEN_REGEXP = '/\$([^\$]+)\$/';
23
-	const DYNAMIC_TOKEN = '`!`';
22
+	const PARAMETER_TOKEN_REGEXP='/\$([^\$]+)\$/';
23
+	const DYNAMIC_TOKEN='`!`';
24 24
 
25 25
 	/**
26 26
 	 * Parse the sql text for dynamic place holders of the form $name$.
@@ -29,13 +29,13 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public function parse($sqlText)
31 31
 	{
32
-		$matches = array();
33
-		$mappings = array();
32
+		$matches=array();
33
+		$mappings=array();
34 34
 		preg_match_all(self::PARAMETER_TOKEN_REGEXP, $sqlText, $matches);
35
-		for($i = 0, $k=count($matches[1]); $i<$k; $i++)
35
+		for($i=0, $k=count($matches[1]); $i < $k; $i++)
36 36
 		{
37
-			$mappings[] = $matches[1][$i];
38
-			$sqlText = str_replace($matches[0][$i], self::DYNAMIC_TOKEN, $sqlText);
37
+			$mappings[]=$matches[1][$i];
38
+			$sqlText=str_replace($matches[0][$i], self::DYNAMIC_TOKEN, $sqlText);
39 39
 		}
40 40
 		return array('sql'=>$sqlText, 'parameters'=>$mappings);
41 41
 	}
Please login to merge, or discard this patch.
framework/Data/SqlMap/Configuration/TInlineParameterMapParser.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	/**
26 26
 	 * Regular expression for parsing inline parameter maps.
27 27
 	 */
28
-	const PARAMETER_TOKEN_REGEXP = '/#([^#]+)#/';
28
+	const PARAMETER_TOKEN_REGEXP='/#([^#]+)#/';
29 29
 
30 30
 	/**
31 31
 	 * Parse the sql text for inline parameters.
@@ -35,14 +35,14 @@  discard block
 block discarded – undo
35 35
 	 */
36 36
 	public function parse($sqlText, $scope)
37 37
 	{
38
-		$matches = array();
39
-		$mappings = array();
38
+		$matches=array();
39
+		$mappings=array();
40 40
 		preg_match_all(self::PARAMETER_TOKEN_REGEXP, $sqlText, $matches);
41 41
 
42
-		for($i = 0, $k=count($matches[1]); $i<$k; $i++)
42
+		for($i=0, $k=count($matches[1]); $i < $k; $i++)
43 43
 		{
44
-			$mappings[] = $this->parseMapping($matches[1][$i], $scope);
45
-			$sqlText = str_replace($matches[0][$i], '?', $sqlText);
44
+			$mappings[]=$this->parseMapping($matches[1][$i], $scope);
45
+			$sqlText=str_replace($matches[0][$i], '?', $sqlText);
46 46
 		}
47 47
 		return array('sql'=>$sqlText, 'parameters'=>$mappings);
48 48
 	}
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
 	 */
56 56
 	protected function parseMapping($token, $scope)
57 57
 	{
58
-		$mapping = new TParameterProperty;
59
-		$properties = explode(',', $token);
58
+		$mapping=new TParameterProperty;
59
+		$properties=explode(',', $token);
60 60
 		$mapping->setProperty(trim(array_shift($properties)));
61 61
 		foreach($properties as $property)
62 62
 		{
63
-			$prop = explode('=',$property);
64
-			$name = trim($prop[0]); $value=trim($prop[1]);
63
+			$prop=explode('=', $property);
64
+			$name=trim($prop[0]); $value=trim($prop[1]);
65 65
 			if($mapping->canSetProperty($name))
66 66
 				$mapping->{'set'.$name}($value);
67 67
 			else
Please login to merge, or discard this patch.
framework/Data/TDbDataReader.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
 	public function bindColumn($column, &$value, $dataType=null)
64 64
 	{
65 65
 		if($dataType===null)
66
-			$this->_statement->bindColumn($column,$value);
66
+			$this->_statement->bindColumn($column, $value);
67 67
 		else
68
-			$this->_statement->bindColumn($column,$value,$dataType);
68
+			$this->_statement->bindColumn($column, $value, $dataType);
69 69
 	}
70 70
 
71 71
 	/**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 	public function setFetchMode($mode)
75 75
 	{
76 76
 		$params=func_get_args();
77
-		call_user_func_array(array($this->_statement,'setFetchMode'),$params);
77
+		call_user_func_array(array($this->_statement, 'setFetchMode'), $params);
78 78
 	}
79 79
 
80 80
 	/**
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
 	 * @param array list of column names whose values are to be passed as parameters in the constructor of the class being created
103 103
 	 * @return mixed|false the populated object, false if no more row of data available
104 104
 	 */
105
-	public function readObject($className,$fields)
105
+	public function readObject($className, $fields)
106 106
 	{
107
-		return $this->_statement->fetchObject($className,$fields);
107
+		return $this->_statement->fetchObject($className, $fields);
108 108
 	}
109 109
 
110 110
 	/**
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 	 */
172 172
 	public function rewind()
173 173
 	{
174
-		if($this->_index<0)
174
+		if($this->_index < 0)
175 175
 		{
176 176
 			$this->_row=$this->_statement->fetch();
177 177
 			$this->_index=0;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,8 +179,7 @@
 block discarded – undo
179 179
 		{
180 180
 			$this->_row=$this->_statement->fetch();
181 181
 			$this->_index=0;
182
-		}
183
-		else
182
+		} else
184 183
 			throw new TDbException('dbdatareader_rewind_invalid');
185 184
 	}
186 185
 
Please login to merge, or discard this patch.
framework/Data/TDbCommand.php 3 patches
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -109,8 +109,7 @@  discard block
 block discarded – undo
109 109
 			try
110 110
 			{
111 111
 				$this->_statement=$this->getConnection()->getPdoInstance()->prepare($this->getText());
112
-			}
113
-			catch(Exception $e)
112
+			} catch(Exception $e)
114 113
 			{
115 114
 				throw new TDbException('dbcommand_prepare_failed',$e->getMessage(),$this->getText());
116 115
 			}
@@ -186,11 +185,9 @@  discard block
 block discarded – undo
186 185
 			{
187 186
 				$this->_statement->execute();
188 187
 				return $this->_statement->rowCount();
189
-			}
190
-			else
188
+			} else
191 189
 				return $this->getConnection()->getPdoInstance()->exec($this->getText());
192
-		}
193
-		catch(Exception $e)
190
+		} catch(Exception $e)
194 191
 		{
195 192
 			throw new TDbException('dbcommand_execute_failed',$e->getMessage(),$this->getDebugStatementText());
196 193
 		}
@@ -223,8 +220,7 @@  discard block
 block discarded – undo
223 220
 			else
224 221
 				$this->_statement=$this->getConnection()->getPdoInstance()->query($this->getText());
225 222
 			return new TDbDataReader($this);
226
-		}
227
-		catch(Exception $e)
223
+		} catch(Exception $e)
228 224
 		{
229 225
 			throw new TDbException('dbcommand_query_failed',$e->getMessage(),$this->getDebugStatementText());
230 226
 		}
@@ -250,8 +246,7 @@  discard block
 block discarded – undo
250 246
 			$result=$this->_statement->fetch($fetchAssociative ? PDO::FETCH_ASSOC : PDO::FETCH_NUM);
251 247
 			$this->_statement->closeCursor();
252 248
 			return $result;
253
-		}
254
-		catch(Exception $e)
249
+		} catch(Exception $e)
255 250
 		{
256 251
 			throw new TDbException('dbcommand_query_failed',$e->getMessage(),$this->getDebugStatementText());
257 252
 		}
@@ -279,8 +274,7 @@  discard block
 block discarded – undo
279 274
 				return stream_get_contents($result);
280 275
 			else
281 276
 				return $result;
282
-		}
283
-		catch(Exception $e)
277
+		} catch(Exception $e)
284 278
 		{
285 279
 			throw new TDbException('dbcommand_query_failed',$e->getMessage(),$this->getDebugStatementText());
286 280
 		}
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	 * @param TDbConnection the database connection
46 46
 	 * @param string the SQL statement to be executed
47 47
 	 */
48
-	public function __construct(TDbConnection $connection,$text)
48
+	public function __construct(TDbConnection $connection, $text)
49 49
 	{
50 50
 		$this->_connection=$connection;
51 51
 		$this->setText($text);
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 */
57 57
 	public function __sleep()
58 58
 	{
59
-		return array_diff(parent::__sleep(),array("\0TDbCommand\0_statement"));
59
+		return array_diff(parent::__sleep(), array("\0TDbCommand\0_statement"));
60 60
 	}
61 61
 
62 62
 	/**
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 			}
113 113
 			catch(Exception $e)
114 114
 			{
115
-				throw new TDbException('dbcommand_prepare_failed',$e->getMessage(),$this->getText());
115
+				throw new TDbException('dbcommand_prepare_failed', $e->getMessage(), $this->getText());
116 116
 			}
117 117
 		}
118 118
 	}
@@ -142,11 +142,11 @@  discard block
 block discarded – undo
142 142
 	{
143 143
 		$this->prepare();
144 144
 		if($dataType===null)
145
-			$this->_statement->bindParam($name,$value);
145
+			$this->_statement->bindParam($name, $value);
146 146
 		else if($length===null)
147
-			$this->_statement->bindParam($name,$value,$dataType);
147
+			$this->_statement->bindParam($name, $value, $dataType);
148 148
 		else
149
-			$this->_statement->bindParam($name,$value,$dataType,$length);
149
+			$this->_statement->bindParam($name, $value, $dataType, $length);
150 150
 	}
151 151
 
152 152
 	/**
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
 	{
164 164
 		$this->prepare();
165 165
 		if($dataType===null)
166
-			$this->_statement->bindValue($name,$value);
166
+			$this->_statement->bindValue($name, $value);
167 167
 		else
168
-			$this->_statement->bindValue($name,$value,$dataType);
168
+			$this->_statement->bindValue($name, $value, $dataType);
169 169
 	}
170 170
 
171 171
 	/**
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 		}
193 193
 		catch(Exception $e)
194 194
 		{
195
-			throw new TDbException('dbcommand_execute_failed',$e->getMessage(),$this->getDebugStatementText());
195
+			throw new TDbException('dbcommand_execute_failed', $e->getMessage(), $this->getDebugStatementText());
196 196
 		}
197 197
 	}
198 198
 
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 		}
227 227
 		catch(Exception $e)
228 228
 		{
229
-			throw new TDbException('dbcommand_query_failed',$e->getMessage(),$this->getDebugStatementText());
229
+			throw new TDbException('dbcommand_query_failed', $e->getMessage(), $this->getDebugStatementText());
230 230
 		}
231 231
 	}
232 232
 
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 		}
254 254
 		catch(Exception $e)
255 255
 		{
256
-			throw new TDbException('dbcommand_query_failed',$e->getMessage(),$this->getDebugStatementText());
256
+			throw new TDbException('dbcommand_query_failed', $e->getMessage(), $this->getDebugStatementText());
257 257
 		}
258 258
 	}
259 259
 
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 		}
283 283
 		catch(Exception $e)
284 284
 		{
285
-			throw new TDbException('dbcommand_query_failed',$e->getMessage(),$this->getDebugStatementText());
285
+			throw new TDbException('dbcommand_query_failed', $e->getMessage(), $this->getDebugStatementText());
286 286
 		}
287 287
 	}
288 288
 
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,6 +165,7 @@  discard block
 block discarded – undo
165 165
 	 * placeholders, this will be the 1-indexed position of the parameter.
166 166
 	 * @param mixed The value to bind to the parameter
167 167
 	 * @param int SQL data type of the parameter
168
+	 * @param string $name
168 169
 	 * @see http://www.php.net/manual/en/function.PDOStatement-bindValue.php
169 170
 	 */
170 171
 	public function bindValue($name, $value, $dataType=null)
@@ -269,7 +270,7 @@  discard block
 block discarded – undo
269 270
 	 * Executes the SQL statement and returns the value of the first column in the first row of data.
270 271
 	 * This is a convenient method of {@link query} when only a single scalar
271 272
 	 * value is needed (e.g. obtaining the count of the records).
272
-	 * @return mixed the value of the first column in the first row of the query result. False is returned if there is no value.
273
+	 * @return string the value of the first column in the first row of the query result. False is returned if there is no value.
273 274
 	 * @throws TDbException execution failed
274 275
 	 */
275 276
 	public function queryScalar()
Please login to merge, or discard this patch.
framework/Caching/TAPCCache.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
 		if(!extension_loaded('apc'))
57 57
 			throw new TConfigurationException('apccache_extension_required');
58 58
 
59
-		if(ini_get('apc.enabled') == false)
59
+		if(ini_get('apc.enabled')==false)
60 60
 			throw new TConfigurationException('apccache_extension_not_enabled');
61 61
 
62
-		if(substr(php_sapi_name(), 0, 3) === 'cli' and ini_get('apc.enable_cli') == false)
62
+		if(substr(php_sapi_name(), 0, 3)==='cli' and ini_get('apc.enable_cli')==false)
63 63
 			throw new TConfigurationException('apccache_extension_not_enabled_cli');
64 64
 
65 65
 		parent::init($config);
@@ -85,9 +85,9 @@  discard block
 block discarded – undo
85 85
 	 * @param integer the number of seconds in which the cached value will expire. 0 means never expire.
86 86
 	 * @return boolean true if the value is successfully stored into cache, false otherwise
87 87
 	 */
88
-	protected function setValue($key,$value,$expire)
88
+	protected function setValue($key, $value, $expire)
89 89
 	{
90
-		return apc_store($key,$value,$expire);
90
+		return apc_store($key, $value, $expire);
91 91
 	}
92 92
 
93 93
 	/**
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
 	 * @param integer the number of seconds in which the cached value will expire. 0 means never expire.
100 100
 	 * @return boolean true if the value is successfully stored into cache, false otherwise
101 101
 	 */
102
-	protected function addValue($key,$value,$expire)
102
+	protected function addValue($key, $value, $expire)
103 103
 	{
104
-		return apc_add($key,$value,$expire);
104
+		return apc_add($key, $value, $expire);
105 105
 	}
106 106
 
107 107
 	/**
Please login to merge, or discard this patch.
framework/Caching/TXCache.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 		if(!function_exists('xcache_isset'))
53 53
 			throw new TConfigurationException('xcache_extension_required');
54 54
 
55
-		$enabled = (int)ini_get('xcache.cacher') !== 0;
56
-		$var_size = (int)ini_get('xcache.var_size');
55
+		$enabled=(int) ini_get('xcache.cacher')!==0;
56
+		$var_size=(int) ini_get('xcache.var_size');
57 57
 
58 58
 		if(!($enabled && $var_size > 0))
59 59
 			throw new TConfigurationException('xcache_extension_not_enabled');
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
 	 * @param integer the number of seconds in which the cached value will expire. 0 means never expire.
82 82
 	 * @return boolean true if the value is successfully stored into cache, false otherwise
83 83
 	 */
84
-	protected function setValue($key,$value,$expire)
84
+	protected function setValue($key, $value, $expire)
85 85
 	{
86
-		return xcache_set($key,$value,$expire);
86
+		return xcache_set($key, $value, $expire);
87 87
 	}
88 88
 
89 89
 	/**
@@ -95,9 +95,9 @@  discard block
 block discarded – undo
95 95
 	 * @param integer the number of seconds in which the cached value will expire. 0 means never expire.
96 96
 	 * @return boolean true if the value is successfully stored into cache, false otherwise
97 97
 	 */
98
-	protected function addValue($key,$value,$expire)
98
+	protected function addValue($key, $value, $expire)
99 99
 	{
100
-		return !xcache_isset($key) ? $this->setValue($key,$value,$expire) : false;
100
+		return !xcache_isset($key) ? $this->setValue($key, $value, $expire) : false;
101 101
 	}
102 102
 
103 103
 	/**
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 	 */
118 118
 	public function flush()
119 119
 	{
120
-		for($i=0, $max=xcache_count(XC_TYPE_VAR); $i<$max; $i++)
120
+		for($i=0, $max=xcache_count(XC_TYPE_VAR); $i < $max; $i++)
121 121
 		{
122 122
 			if(xcache_clear_cache(XC_TYPE_VAR, $i)===false)
123 123
 				return false;
Please login to merge, or discard this patch.
framework/Collections/TPagedList.php 3 patches
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -181,22 +181,18 @@  discard block
 block discarded – undo
181 181
 					$this->_currentPageIndex=$pageIndex;
182 182
 					$this->onPageIndexChanged(new TPagedListPageChangedEventParameter($oldPage));
183 183
 					return $pageIndex;
184
-				}
185
-				else
184
+				} else
186 185
 					return false;
187
-			}
188
-			else
186
+			} else
189 187
 				return false;
190
-		}
191
-		else
188
+		} else
192 189
 		{
193 190
 			if($pageIndex>=0 && $pageIndex<$this->getPageCount())
194 191
 			{
195 192
 				$this->_currentPageIndex=$pageIndex;
196 193
 				$this->onPageIndexChanged(null);
197 194
 				return $pageIndex;
198
-			}
199
-			else
195
+			} else
200 196
 				return false;
201 197
 		}
202 198
 	}
@@ -248,8 +244,7 @@  discard block
 block discarded – undo
248 244
 				return (int)(($this->_virtualCount+$this->_pageSize-1)/$this->_pageSize);
249 245
 			else
250 246
 				return -1;
251
-		}
252
-		else
247
+		} else
253 248
 			return (int)((parent::getCount()+$this->_pageSize-1)/$this->_pageSize);
254 249
 	}
255 250
 
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
 	 * @param array|Iterator the initial data. Default is null, meaning no initialization.
82 82
 	 * @param boolean whether the list is read-only. Always true for paged list.
83 83
 	 */
84
-	public function __construct($data=null,$readOnly=false)
84
+	public function __construct($data=null, $readOnly=false)
85 85
 	{
86
-		parent::__construct($data,true);
86
+		parent::__construct($data, true);
87 87
 	}
88 88
 
89 89
 	/**
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 */
116 116
 	public function setPageSize($value)
117 117
 	{
118
-		if(($value=TPropertyValue::ensureInteger($value))>0)
118
+		if(($value=TPropertyValue::ensureInteger($value)) > 0)
119 119
 			$this->_pageSize=$value;
120 120
 		else
121 121
 			throw new TInvalidDataValueException('pagedlist_pagesize_invalid');
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 	 */
147 147
 	public function onPageIndexChanged($param)
148 148
 	{
149
-		$this->raiseEvent('OnPageIndexChanged',$this,$param);
149
+		$this->raiseEvent('OnPageIndexChanged', $this, $param);
150 150
 	}
151 151
 
152 152
 	/**
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 	 */
159 159
 	public function onFetchData($param)
160 160
 	{
161
-		$this->raiseEvent('OnFetchData',$this,$param);
161
+		$this->raiseEvent('OnFetchData', $this, $param);
162 162
 	}
163 163
 
164 164
 	/**
@@ -172,9 +172,9 @@  discard block
 block discarded – undo
172 172
 			return $pageIndex;
173 173
 		if($this->_customPaging)
174 174
 		{
175
-			if($pageIndex>=0 && ($this->_virtualCount<0 || $pageIndex<$this->getPageCount()))
175
+			if($pageIndex >= 0 && ($this->_virtualCount < 0 || $pageIndex < $this->getPageCount()))
176 176
 			{
177
-				$param=new TPagedListFetchDataEventParameter($pageIndex,$this->_pageSize*$pageIndex,$this->_pageSize);
177
+				$param=new TPagedListFetchDataEventParameter($pageIndex, $this->_pageSize * $pageIndex, $this->_pageSize);
178 178
 				$this->onFetchData($param);
179 179
 				if(($data=$param->getData())!==null)
180 180
 				{
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 		}
195 195
 		else
196 196
 		{
197
-			if($pageIndex>=0 && $pageIndex<$this->getPageCount())
197
+			if($pageIndex >= 0 && $pageIndex < $this->getPageCount())
198 198
 			{
199 199
 				$this->_currentPageIndex=$pageIndex;
200 200
 				$this->onPageIndexChanged(null);
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 	 */
212 212
 	public function nextPage()
213 213
 	{
214
-		return $this->gotoPage($this->_currentPageIndex+1);
214
+		return $this->gotoPage($this->_currentPageIndex + 1);
215 215
 	}
216 216
 
217 217
 	/**
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 	 */
221 221
 	public function previousPage()
222 222
 	{
223
-		return $this->gotoPage($this->_currentPageIndex-1);
223
+		return $this->gotoPage($this->_currentPageIndex - 1);
224 224
 	}
225 225
 
226 226
 	/**
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 	 */
237 237
 	public function setVirtualCount($value)
238 238
 	{
239
-		if(($value=TPropertyValue::ensureInteger($value))<0)
239
+		if(($value=TPropertyValue::ensureInteger($value)) < 0)
240 240
 			$value=-1;
241 241
 		$this->_virtualCount=$value;
242 242
 	}
@@ -248,13 +248,13 @@  discard block
 block discarded – undo
248 248
 	{
249 249
 		if($this->_customPaging)
250 250
 		{
251
-			if($this->_virtualCount>=0)
252
-				return (int)(($this->_virtualCount+$this->_pageSize-1)/$this->_pageSize);
251
+			if($this->_virtualCount >= 0)
252
+				return (int) (($this->_virtualCount + $this->_pageSize - 1) / $this->_pageSize);
253 253
 			else
254 254
 				return -1;
255 255
 		}
256 256
 		else
257
-			return (int)((parent::getCount()+$this->_pageSize-1)/$this->_pageSize);
257
+			return (int) ((parent::getCount() + $this->_pageSize - 1) / $this->_pageSize);
258 258
 	}
259 259
 
260 260
 	/**
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	 */
271 271
 	public function getIsLastPage()
272 272
 	{
273
-		return $this->_currentPageIndex===$this->getPageCount()-1;
273
+		return $this->_currentPageIndex===$this->getPageCount() - 1;
274 274
 	}
275 275
 
276 276
 	/**
@@ -282,8 +282,8 @@  discard block
 block discarded – undo
282 282
 			return parent::getCount();
283 283
 		else
284 284
 		{
285
-			if($this->_currentPageIndex===$this->getPageCount()-1)
286
-				return parent::getCount()-$this->_pageSize*$this->_currentPageIndex;
285
+			if($this->_currentPageIndex===$this->getPageCount() - 1)
286
+				return parent::getCount() - $this->_pageSize * $this->_currentPageIndex;
287 287
 			else
288 288
 				return $this->_pageSize;
289 289
 		}
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 		if($this->_customPaging)
316 316
 			return parent::itemAt($index);
317 317
 		else
318
-			return parent::itemAt($this->_pageSize*$this->_currentPageIndex+$index);
318
+			return parent::itemAt($this->_pageSize * $this->_currentPageIndex + $index);
319 319
 	}
320 320
 
321 321
 	/**
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 	public function indexOf($item)
326 326
 	{
327 327
 		$c=$this->getCount();
328
-		for($i=0;$i<$c;++$i)
328
+		for($i=0; $i < $c; ++$i)
329 329
 			if($this->itemAt($i)===$item)
330 330
 				return $i;
331 331
 		return -1;
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
 	 */
340 340
 	public function offsetExists($offset)
341 341
 	{
342
-		return ($offset>=0 && $offset<$this->getCount());
342
+		return ($offset >= 0 && $offset < $this->getCount());
343 343
 	}
344 344
 
345 345
 	/**
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 	{
362 362
 		$c=$this->getCount();
363 363
 		$array=array();
364
-		for($i=0;$i<$c;++$i)
364
+		for($i=0; $i < $c; ++$i)
365 365
 			$array[$i]=$this->itemAt($i);
366 366
 		return $array;
367 367
 	}
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,6 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
 	/**
98 98
 	 * @param boolean whether to allow custom paging
99
+	 * @param boolean $value
99 100
 	 */
100 101
 	public function setCustomPaging($value)
101 102
 	{
@@ -143,6 +144,7 @@  discard block
 block discarded – undo
143 144
 	 * Raises <b>OnPageIndexChanged</b> event.
144 145
 	 * This event is raised each time when the list changes to a different page.
145 146
 	 * @param TPagedListPageChangedEventParameter event parameter
147
+	 * @param TPagedListPageChangedEventParameter|null $param
146 148
 	 */
147 149
 	public function onPageIndexChanged($param)
148 150
 	{
@@ -155,6 +157,7 @@  discard block
 block discarded – undo
155 157
 	 * and needs the new page of data. This event can only be raised when
156 158
 	 * {@link setCustomPaging CustomPaging} is true.
157 159
 	 * @param TPagedListFetchDataEventParameter event parameter
160
+	 * @param TPagedListFetchDataEventParameter $param
158 161
 	 */
159 162
 	public function onFetchData($param)
160 163
 	{
@@ -290,7 +293,7 @@  discard block
 block discarded – undo
290 293
 	}
291 294
 
292 295
 	/**
293
-	 * @return Iterator iterator
296
+	 * @return \ArrayIterator iterator
294 297
 	 */
295 298
 	public function getIterator()
296 299
 	{
Please login to merge, or discard this patch.