Completed
Push — master ( 29387e...b73e61 )
by Vladimir
02:36
created
src/PulseNote.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      *
186 186
      * @return $this
187 187
      */
188
-    public function editNote ($title = NULL, $content = NULL, $user_id = NULL, $create_update = NULL)
188
+    public function editNote ($title = null, $content = null, $user_id = null, $create_update = null)
189 189
     {
190 190
         $this->checkInvalid();
191 191
 
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
      */
254 254
     public function editContent ($content)
255 255
     {
256
-        return $this->editNote(NULL, $content);
256
+        return $this->editNote(null, $content);
257 257
     }
258 258
 
259 259
     /**
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
      */
274 274
     public function editAuthor ($user_id)
275 275
     {
276
-        return $this->editNote(NULL, NULL, $user_id);
276
+        return $this->editNote(null, null, $user_id);
277 277
     }
278 278
 
279 279
     /**
Please login to merge, or discard this patch.