File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,9 @@ public function listPackages($customerIdOrUrlName)
7272 return $ this ->get (sprintf ('/customers/%s/packages/ ' , $ customerIdOrUrlName ));
7373 }
7474
75- public function showPackage ($ customerIdOrUrlName , $ packageName )
75+ public function showPackage ($ customerIdOrUrlName , $ packageIdOrName )
7676 {
77- return $ this ->get (sprintf ('/customers/%s/packages/%s/ ' , $ customerIdOrUrlName , $ packageName ));
77+ return $ this ->get (sprintf ('/customers/%s/packages/%s/ ' , $ customerIdOrUrlName , $ packageIdOrName ));
7878 }
7979
8080 /**
@@ -104,9 +104,9 @@ public function addPackages($customerIdOrUrlName, array $packages)
104104 return $ this ->addOrEditPackages ($ customerIdOrUrlName , $ packages );
105105 }
106106
107- public function removePackage ($ customerIdOrUrlName , $ packageName )
107+ public function removePackage ($ customerIdOrUrlName , $ packageIdOrName )
108108 {
109- return $ this ->delete (sprintf ('/customers/%s/packages/%s/ ' , $ customerIdOrUrlName , $ packageName ));
109+ return $ this ->delete (sprintf ('/customers/%s/packages/%s/ ' , $ customerIdOrUrlName , $ packageIdOrName ));
110110 }
111111
112112 public function regenerateToken ($ customerIdOrUrlName , array $ confirmation )
You can’t perform that action at this time.
0 commit comments