Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit f63910d

Browse files
authored
Merge pull request #83 from VincentBean/master
Add custom docblocks
2 parents 8a1bcc9 + 7cbca3c commit f63910d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/Api/Custom.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33
namespace Grayloon\Magento\Api;
44

55
use Grayloon\Magento\Magento;
6-
6+
use Illuminate\Http\Client\Response;
7+
8+
/**
9+
* @method Response get($path, $parameters = [])
10+
* @method Response post($path, $parameters = [])
11+
* @method Response|void put($path, $parameters = [])
12+
* @method Response|void delete($path, $parameters = [])
13+
*/
714
class Custom extends AbstractApi
815
{
916
const HTTP_METHODS = ['get', 'post', 'put', 'delete'];

0 commit comments

Comments
 (0)