-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathAddress.php
More file actions
62 lines (55 loc) · 1.39 KB
/
Copy pathAddress.php
File metadata and controls
62 lines (55 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
namespace Shippo;
class Shippo_Address extends Shippo_ApiResource
{
/**
* @param string $class Ignored.
*
* @return string The class URL for this resource. It needs to be special
* cased because it doesn't fit into the standard resource pattern.
* The standard resource pattern is name + s, e.g. parcel becomes parcels.
*/
public static function classUrl($class)
{
return "/v1/addresses";
}
/**
* @param array|null $params
* @param string|null $apiKey
* @return static
*/
public static function create($params = null, $apiKey = null)
{
$class = get_class();
return self::_scopedCreate($class, $params, $apiKey);
}
/**
* @param $id
* @param null $apiKey
* @return static
*/
public static function retrieve($id, $apiKey = null)
{
$class = get_class();
return self::_scopedRetrieve($class, $id, $apiKey);
}
/**
* @param null $params
* @param null $apiKey
* @return static
*/
public static function all($params = null, $apiKey = null)
{
$class = get_class();
return self::_scopedAll($class, $params, $apiKey);
}
/**
* @param $id
* @return mixed
*/
public static function validate($id)
{
$class = get_class();
return self::_scopedValidate($class, $id);
}
}