Completed
Push — develop ( afc6a9...c6c8f7 )
by Vladimir
02:59
created
src/Pulse.php 2 patches
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -233,6 +233,10 @@  discard block
 block discarded – undo
233 233
     //   Pulse functions
234 234
     // ================================================================================================================
235 235
 
236
+    /**
237
+     * @param integer $pulseID
238
+     * @param string $newName
239
+     */
236 240
     private static function editPulseNameCall ($pulseID, $newName)
237 241
     {
238 242
         $editUrl    = sprintf("%s/%d.json", self::apiEndpoint(), $pulseID);
@@ -280,6 +284,9 @@  discard block
 block discarded – undo
280 284
         $this->assignResults();
281 285
     }
282 286
 
287
+    /**
288
+     * @param integer $pulseID
289
+     */
283 290
     private static function archivePulseCall ($pulseID)
284 291
     {
285 292
         $archiveURL = sprintf("%s/%d.json", self::apiEndpoint(), $pulseID);
@@ -319,6 +326,9 @@  discard block
 block discarded – undo
319 326
         $this->assignResults();
320 327
     }
321 328
 
329
+    /**
330
+     * @param integer $pulseID
331
+     */
322 332
     private static function deletePulseCall ($pulseID)
323 333
     {
324 334
         $deleteURL = sprintf("%s/%d.json", self::apiEndpoint(), $pulseID);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
      * @param string $title
275 275
      * @since 0.1.0
276 276
      */
277
-    public function editName($title)
277
+    public function editName ($title)
278 278
     {
279 279
         $this->jsonResponse = self::editPulseNameCall($this->getId(), $title);
280 280
         $this->assignResults();
Please login to merge, or discard this patch.