Skip to content

Commit f9cf6a8

Browse files
authored
Merge pull request #3 from whizsid/analysis-XpMB54
Apply fixes from StyleCI
2 parents 4b79a32 + bc7a284 commit f9cf6a8

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/AB/Table/Column.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Column extends KeepTable
2020
/**
2121
* Use When a column is auto increment.
2222
*
23-
* @var boolean
23+
* @var bool
2424
*/
2525
protected $autoIncrement = false;
2626
/**
@@ -32,13 +32,13 @@ class Column extends KeepTable
3232
/**
3333
* Is free to put null values in this column.
3434
*
35-
* @var boolean
35+
* @var bool
3636
*/
3737
protected $nullable = true;
3838
/**
3939
* Max length for a column in byte.
4040
*
41-
* @var integer
41+
* @var int
4242
*/
4343
protected $maxLength;
4444
/**
@@ -254,7 +254,7 @@ public function setAutoIncrement(bool $ai = true)
254254
/**
255255
* Determine the column has set to auto increment.
256256
*
257-
* @return boolean
257+
* @return bool
258258
*/
259259
public function isAutoIncrement()
260260
{
@@ -284,7 +284,7 @@ public function setNullable(bool $nl = true)
284284
/**
285285
* Determine the weather the column has nullable attribute or not.
286286
*
287-
* @return boolean
287+
* @return bool
288288
*/
289289
public function isNullable()
290290
{

src/Helper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public static function __callStatic($name, $arguments)
176176
*
177177
* @param ABFunction $func
178178
*
179-
* @return boolean
179+
* @return bool
180180
*/
181181
public static function isFunction($func)
182182
{
@@ -188,7 +188,7 @@ public static function isFunction($func)
188188
*
189189
* @param Agregate $func
190190
*
191-
* @return boolean
191+
* @return bool
192192
*/
193193
public static function isAgregate($func)
194194
{

src/Query/Objects/ReturnSet.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public function setDataSet($dataSet)
5858
public function getAffectedRowsCount()
5959
{
6060
return $this->affectedRows;
61-
}
62-
61+
}
62+
6363
/**
6464
* Setter for affected row count.
6565
*

0 commit comments

Comments
 (0)