Completed
Push — develop ( db7143...2ce0a7 )
by Vladimir
02:49
created
src/PulseGroup.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,12 +50,12 @@
 block discarded – undo
50 50
 
51 51
     public function isArchived ()
52 52
     {
53
-        return (bool)$this->archived;
53
+        return (bool) $this->archived;
54 54
     }
55 55
 
56 56
     public function isDeleted ()
57 57
     {
58
-        return (bool)$this->deleted;
58
+        return (bool) $this->deleted;
59 59
     }
60 60
 
61 61
     /**
Please login to merge, or discard this patch.
src/PulseBoard.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
      *
399 399
      * @return Pulse
400 400
      */
401
-    public function createPulse ($name, $owner, $groupId = NULL, $updateText = NULL, $announceToAll = NULL)
401
+    public function createPulse ($name, $owner, $groupId = null, $updateText = null, $announceToAll = null)
402 402
     {
403 403
         if ($owner instanceof PulseUser)
404 404
         {
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
         $this->deletedObject = true;
446 446
     }
447 447
 
448
-    public static function createBoard ($name, $userId, $description = NULL)
448
+    public static function createBoard ($name, $userId, $description = null)
449 449
     {
450 450
         $url        = sprintf("%s.json", self::apiEndpoint());
451 451
         $postParams = array(
Please login to merge, or discard this patch.