Completed
Push — master ( 4800e4...a9000b )
by Vladimir
03:08 queued 53s
created
src/Pulse.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -407,7 +407,7 @@
 block discarded – undo
407 407
      * @since  0.1.0
408 408
      * @return PulseNote
409 409
      */
410
-    public function addNote ($title, $content, $owners_only = false, $user_id = NULL, $create_update = false)
410
+    public function addNote ($title, $content, $owners_only = false, $user_id = null, $create_update = false)
411 411
     {
412 412
         $url        = sprintf($this->urlSyntax, parent::apiEndpoint(), $this->id, "notes");
413 413
         $postParams = array(
Please login to merge, or discard this patch.
src/PulseBoard.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -391,7 +391,7 @@
 block discarded – undo
391 391
         $this->deletedObject = true;
392 392
     }
393 393
 
394
-    public static function createBoard ($user_id, $name, $description = NULL)
394
+    public static function createBoard ($user_id, $name, $description = null)
395 395
     {
396 396
         $url        = sprintf("%s.json", parent::apiEndpoint());
397 397
         $postParams = array(
Please login to merge, or discard this patch.
src/PulseNote.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
         parent::__construct($array);
16 16
     }
17 17
 
18
-    public function editNote ($title = NULL, $content = NULL, $user_id = NULL, $create_update = NULL)
18
+    public function editNote ($title = null, $content = null, $user_id = null, $create_update = null)
19 19
     {
20 20
         $this->checkInvalid();
21 21
 
Please login to merge, or discard this patch.
src/Objects/ApiObject.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -387,7 +387,7 @@
 block discarded – undo
387 387
      *
388 388
      * @return string The base URL to call
389 389
      */
390
-    protected static function apiEndpoint ($apiPrefix = NULL)
390
+    protected static function apiEndpoint ($apiPrefix = null)
391 391
     {
392 392
         $apiSection = isset($apiPrefix) ? $apiPrefix : static::API_PREFIX;
393 393
 
Please login to merge, or discard this patch.