Skip to content

Commit

Permalink
Corrects return type for array processor (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstandiford committed Feb 6, 2023
1 parent 024f812 commit c6c2ea4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Helpers/Processors/Array_Processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,12 @@ public function prepend( ...$items ): static {
*
* @param mixed ...$items Items to add
*
* @return void
* @return $this
*/
public function append( ...$items ): static {
Array_Helper::append( $this->subject, ...$items );

return $this;
}

/**
Expand Down

0 comments on commit c6c2ea4

Please sign in to comment.