Skip to content

Commit 429e5ea

Browse files
authored
Merge pull request #560 from ans-group/eol-cleanup
End of Life Clean Up
2 parents 521cc3a + c5b3f62 commit 429e5ea

23 files changed

+7
-1614
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ Each client class has its own subclients, which can be accessed via methods on t
3636
```php
3737
<?php
3838

39-
$client = (new \UKFast\SDK\PSS\Client)->auth('API KEY');
39+
$client = (new \UKFast\SDK\eCloud\Client)->auth('API KEY');
4040

41-
$page = $client->requests()->getPage();
41+
$page = $client->vpcs()->getPage();
4242

4343
foreach ($page->getItems() as $request) {
44-
echo "#{$request->id} - {$request->subject}\n";
44+
echo "#{$request->id} - {$request->name}\n";
4545
}
4646
```
4747

src/Billing/Client.php

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,30 @@ class Client extends BaseClient
88
{
99
protected $basePath = 'billing/';
1010

11-
/**
12-
* @return BaseClient
13-
*/
14-
public function paymentCards()
15-
{
16-
return (new PaymentCardClient($this->httpClient))->auth($this->token);
17-
}
18-
1911
/**
2012
* @return BaseClient
2113
*/
2214
public function recurringCosts()
2315
{
2416
return (new RecurringCostClient($this->httpClient))->auth($this->token);
2517
}
26-
18+
2719
/**
2820
* @return CloudCostClient
2921
*/
3022
public function cloudCosts()
3123
{
3224
return (new CloudCostClient($this->httpClient))->auth($this->token);
3325
}
34-
26+
3527
/**
3628
* @return BaseClient
3729
*/
3830
public function invoices()
3931
{
4032
return (new InvoiceClient($this->httpClient))->auth($this->token);
4133
}
42-
34+
4335
/**
4436
* @return BaseClient
4537
*/

src/Billing/Entities/PaymentCard.php

Lines changed: 0 additions & 47 deletions
This file was deleted.

src/Billing/PaymentCardClient.php

Lines changed: 0 additions & 113 deletions
This file was deleted.

src/PSS/AttachmentSelfResponse.php

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/PSS/Client.php

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/PSS/Entities/Attachment.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/PSS/Entities/Author.php

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/PSS/Entities/Download.php

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)