Skip to content

Commit 9e54b39

Browse files
author
Jordi Donadeu Buitrago
committed
Merge branch 'description-to-licences' into 'master'
Add description to licences See merge request nl-transip/transip/restapi-php-library!325
2 parents 19d26ea + ffbf49b commit 9e54b39

4 files changed

Lines changed: 22 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
CHANGELOG
22
=========
3+
6.54.7
4+
-----
5+
* Add description to licences
36
6.54.6
47
-----
58
* Remove method parameter trailing comma

src/Entity/Vps/License.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ class License extends AbstractEntity
1919
*/
2020
protected $name;
2121

22+
/**
23+
* @var string
24+
*/
25+
protected $description;
26+
2227
/**
2328
* @var int
2429
*/
@@ -72,6 +77,11 @@ public function getName(): string
7277
return $this->name;
7378
}
7479

80+
public function getDescription(): string
81+
{
82+
return $this->description;
83+
}
84+
7585
public function getPrice(): int
7686
{
7787
return $this->price;

src/Entity/Vps/LicenseProduct.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ class LicenseProduct extends AbstractEntity
99
/** @var string */
1010
protected $name;
1111

12+
/** @var string */
13+
protected $description;
14+
1215
/** @var int */
1316
protected $price;
1417

@@ -32,6 +35,11 @@ public function getName(): string
3235
return $this->name;
3336
}
3437

38+
public function getDescription(): string
39+
{
40+
return $this->description;
41+
}
42+
3543
public function getPrice(): int
3644
{
3745
return $this->price;

src/TransipAPI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
class TransipAPI
111111
{
112112
public const TRANSIP_API_ENDPOINT = "https://api.transip.nl/v6";
113-
public const TRANSIP_API_LIBRARY_VERSION = "6.54.6";
113+
public const TRANSIP_API_LIBRARY_VERSION = "6.54.7";
114114
public const TRANSIP_API_DEMO_TOKEN = "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImN3MiFSbDU2eDNoUnkjelM4YmdOIn0.eyJpc3MiOiJhcGkudHJhbnNpcC5ubCIsImF1ZCI6ImFwaS50cmFuc2lwLm5sIiwianRpIjoiY3cyIVJsNTZ4M2hSeSN6UzhiZ04iLCJpYXQiOjE1ODIyMDE1NTAsIm5iZiI6MTU4MjIwMTU1MCwiZXhwIjoyMTE4NzQ1NTUwLCJjaWQiOiI2MDQ0OSIsInJvIjpmYWxzZSwiZ2siOmZhbHNlLCJrdiI6dHJ1ZX0.fYBWV4O5WPXxGuWG-vcrFWqmRHBm9yp0PHiYh_oAWxWxCaZX2Rf6WJfc13AxEeZ67-lY0TA2kSaOCp0PggBb_MGj73t4cH8gdwDJzANVxkiPL1Saqiw2NgZ3IHASJnisUWNnZp8HnrhLLe5ficvb1D9WOUOItmFC2ZgfGObNhlL2y-AMNLT4X7oNgrNTGm-mespo0jD_qH9dK5_evSzS3K8o03gu6p19jxfsnIh8TIVRvNdluYC2wo4qDl5EW5BEZ8OSuJ121ncOT1oRpzXB0cVZ9e5_UVAEr9X3f26_Eomg52-PjrgcRJ_jPIUYbrlo06KjjX2h0fzMr21ZE023Gw";
115115

116116
/**

0 commit comments

Comments
 (0)