@@ -185,7 +185,7 @@ discard block |
||
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 |
||
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 |
||
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 | /** |