Skip to content

Commit

Permalink
Correct return
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbjr authored Oct 11, 2020
1 parent e332d93 commit 9d0e7d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Requests/PaymayaRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

abstract class PaymayaRequest
{
public static function make(): self
public static function make()
{
return self;
return new static();
}
}

0 comments on commit 9d0e7d7

Please sign in to comment.