Completed
Push — develop ( 187580...a27f27 )
by Vladimir
02:58
created
src/Pulse.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -418,7 +418,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Objects/ApiObject.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -289,7 +289,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.