Completed
Push — master ( 87a89b...f37b88 )
by Bingo
03:13
created
src/tree/PairingHeap.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -173,10 +173,10 @@  discard block
 block discarded – undo
173 173
     }
174 174
 
175 175
      /**
176
-     * Get the other heap referenced in the current heap
177
-     *
178
-     * @return MergeableAddressableHeapInterface
179
-     */
176
+      * Get the other heap referenced in the current heap
177
+      *
178
+      * @return MergeableAddressableHeapInterface
179
+      */
180 180
     public function getOther(): MergeableAddressableHeapInterface
181 181
     {
182 182
         return $this->other;
@@ -234,13 +234,13 @@  discard block
 block discarded – undo
234 234
     }
235 235
 
236 236
      /**
237
-     * Decrease the node key
238
-     *
239
-     * @param PairingHeapNode $node - the node
240
-     * @param int $newKey - the node new key
241
-     *
242
-     * @throws Exception
243
-     */
237
+      * Decrease the node key
238
+      *
239
+      * @param PairingHeapNode $node - the node
240
+      * @param int $newKey - the node new key
241
+      *
242
+      * @throws Exception
243
+      */
244 244
     public function decreaseKey(PairingHeapNode $node, int $newKey): void
245 245
     {
246 246
         if ($newKey > $node->key) {
Please login to merge, or discard this patch.