| 1 | <?php |
||
| 13 | final class PurchaseClient extends AbstractClient |
||
| 14 | { |
||
| 15 | const BASE_URL = 'https://purchase.izettle.com'; |
||
| 16 | |||
| 17 | const GET_PURCHASE = self::BASE_URL . '/purchases/v2/%s'; |
||
| 18 | const GET_PURCHASES = self::BASE_URL . '/purchases/v2'; |
||
| 19 | |||
| 20 | 1 | public function getPurchaseHistory(): PurchaseHistory |
|
| 24 | |||
| 25 | public function getPurchase(UuidInterface $uuid): Purchase |
||
| 31 | } |
||
| 32 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.