Skip to content

Commit 75f0086

Browse files
committed
coding style: fixed spaces & use statements order
1 parent edce845 commit 75f0086

File tree

65 files changed

+216
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+216
-110
lines changed

src/Iterators/CachingIterator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,4 @@ public function getNextValue()
165165
{
166166
return $this->getInnerIterator()->current();
167167
}
168-
169168
}

src/Iterators/Mapper.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,4 @@ public function current()
3232
{
3333
return ($this->callback)(parent::current(), parent::key());
3434
}
35-
3635
}

src/Utils/ArrayHash.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,4 @@ public function offsetUnset($key)
9393
{
9494
unset($this->$key);
9595
}
96-
9796
}

src/Utils/ArrayList.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,4 @@ public function prepend($value)
110110
$this->offsetSet(0, $value);
111111
array_splice($this->list, 1, 0, $first);
112112
}
113-
114113
}

src/Utils/Arrays.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,5 +283,4 @@ public static function map(array $arr, callable $callback): array
283283
}
284284
return $res;
285285
}
286-
287286
}

src/Utils/Callback.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,5 +183,4 @@ public static function unwrap(\Closure $closure): callable
183183
return $r->getName();
184184
}
185185
}
186-
187186
}

src/Utils/DateTime.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,5 +143,4 @@ public function jsonSerialize(): string
143143
{
144144
return $this->format('c');
145145
}
146-
147146
}

src/Utils/FileSystem.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,5 +154,4 @@ public static function isAbsolute(string $path): bool
154154
{
155155
return (bool) preg_match('#([a-z]:)?[/\\\\]|[a-z][a-z0-9+.-]*://#Ai', $path);
156156
}
157-
158157
}

src/Utils/Html.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,5 +616,4 @@ public function __clone()
616616
}
617617
}
618618
}
619-
620619
}

src/Utils/IHtmlString.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ interface IHtmlString
1717
* Returns string in HTML format
1818
*/
1919
function __toString(): string;
20-
2120
}

0 commit comments

Comments
 (0)