Passed
Push — 1.x ( a81357...387986 )
by Ulises Jeremias
02:45
created
Mbh/Collection/ImmutableArray.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 class ImmutableArray extends FixedArray
27 27
 {
28 28
     /**
29
-    * @inheritDoc
30
-    */
29
+     * @inheritDoc
30
+     */
31 31
     public function clear()
32 32
     {
33 33
         throw ImmutableException::cannotModify(__CLASS__, __METHOD__);
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
     }
83 83
 
84 84
     /**
85
-    * @inheritDoc
86
-    */
85
+     * @inheritDoc
86
+     */
87 87
     public function set(int $index, $value)
88 88
     {
89 89
         throw ImmutableException::cannotModify(__CLASS__, __METHOD__);
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
     }
99 99
 
100 100
     /**
101
-    * @inheritDoc
102
-    */
101
+     * @inheritDoc
102
+     */
103 103
     public function sort(callable $callback = null): SequenceableInterface
104 104
     {
105 105
         throw ImmutableException::cannotModify(__CLASS__, __METHOD__);
Please login to merge, or discard this patch.