@@ -418,7 +418,6 @@ |
||
| 418 | 418 | * @param string $columnId The ID of the column to access. This is typically a slugified version of the column name |
| 419 | 419 | * |
| 420 | 420 | * @since 0.1.0 |
| 421 | - |
|
| 422 | 421 | * @throws ColumnNotFoundException The specified column ID does not exist for this Pulse |
| 423 | 422 | * @throws InvalidColumnException The specified column is not a "text" type column |
| 424 | 423 | * @throws InvalidObjectException The specified column exists but modification of its value is unsupported either |
@@ -289,7 +289,9 @@ |
||
| 289 | 289 | */ |
| 290 | 290 | final protected static function lazyCastNeededOnArray ($objectType, $array) |
| 291 | 291 | { |
| 292 | - if (is_array($array) && count($array) == 0) { return false; } |
|
| 292 | + if (is_array($array) && count($array) == 0) |
|
| 293 | + { |
|
| 294 | +return false; } |
|
| 293 | 295 | |
| 294 | 296 | $firstItem = $array[0]; |
| 295 | 297 | |