Skip to content

Commit

Permalink
Fix accidentally removed semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
valzargaming committed Jan 17, 2025
1 parent c558428 commit 604fa6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Discord/Helpers/CollectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function keys(): array;
public function values(): array;
public function diff($items, ?callable $callback);
public function intersect($items, ?callable $callback);
public function unique(int $flags = SORT_STRING)
public function unique(int $flags = SORT_STRING);
public function offsetExists($offset): bool;
#[\ReturnTypeWillChange]
public function offsetGet($offset);
Expand Down

0 comments on commit 604fa6f

Please sign in to comment.