Skip to content

Commit 8c42905

Browse files
authored
Merge pull request #50 from beschoenen/main
Fix PHPDoc properties
2 parents 6424649 + 1a726b0 commit 8c42905

File tree

6 files changed

+63
-63
lines changed

6 files changed

+63
-63
lines changed

src/Picqer/Carriers/SendCloud/Invoice.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
/**
66
* Class Invoice
77
*
8-
* @property integer id
9-
* @property string description
10-
* @property float price_excl
11-
* @property float price_incl
12-
* @property string date
13-
* @property boolean isPayed
14-
* @property string items
8+
* @property integer $id
9+
* @property string $description
10+
* @property float $price_excl
11+
* @property float $price_incl
12+
* @property string $date
13+
* @property boolean $isPayed
14+
* @property string $items
1515
*
1616
* @package Picqer\Carriers\SendCloud
1717
*/
@@ -36,4 +36,4 @@ class Invoice extends Model
3636
'plural' => 'invoices'
3737
];
3838

39-
}
39+
}

src/Picqer/Carriers/SendCloud/Parcel.php

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@
55
/**
66
* Class Parcel
77
*
8-
* @property integer id
9-
* @property string name
10-
* @property string company_name
11-
* @property string address
12-
* @property string house_number
13-
* @property array address_divided
14-
* @property string city
15-
* @property string postal_code
16-
* @property string telephone
17-
* @property string email
18-
* @property array status
19-
* @property array data
20-
* @property array country
21-
* @property string country_state
22-
* @property array shipment
23-
* @property array label
24-
* @property bool requestShipment
25-
* @property string order_number
26-
* @property string tracking_number
27-
* @property float total_order_value
28-
* @property string total_order_value_currency
29-
* @property string weight
30-
* @property string sender_address
31-
* @property integer quantity
8+
* @property integer $id
9+
* @property string $name
10+
* @property string $company_name
11+
* @property string $address
12+
* @property string $house_number
13+
* @property array $address_divided
14+
* @property string $city
15+
* @property string $postal_code
16+
* @property string $telephone
17+
* @property string $email
18+
* @property array $status
19+
* @property array $data
20+
* @property array $country
21+
* @property string $country_state
22+
* @property array $shipment
23+
* @property array $label
24+
* @property bool $requestShipment
25+
* @property string $order_number
26+
* @property string $tracking_number
27+
* @property float $total_order_value
28+
* @property string $total_order_value_currency
29+
* @property string $weight
30+
* @property string $sender_address
31+
* @property integer $quantity
3232
*
3333
* @package Picqer\Carriers\SendCloud
3434
*/

src/Picqer/Carriers/SendCloud/ParcelStatus.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace Picqer\Carriers\SendCloud;
44

55
/**
6-
* @property integer id
7-
* @property string message
6+
* @property integer $id
7+
* @property string $message
88
*/
99
class ParcelStatus extends Model
1010
{

src/Picqer/Carriers/SendCloud/SenderAddress.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
/**
66
* Class SenderAddress
77
*
8-
* @property integer id
9-
* @property string company_name
10-
* @property string contact_name
11-
* @property string email
12-
* @property string telephone
13-
* @property string street
14-
* @property string house_number
15-
* @property string postal_box
16-
* @property string postal_code
17-
* @property string city
18-
* @property string country
8+
* @property integer $id
9+
* @property string $company_name
10+
* @property string $contact_name
11+
* @property string $email
12+
* @property string $telephone
13+
* @property string $street
14+
* @property string $house_number
15+
* @property string $postal_box
16+
* @property string $postal_code
17+
* @property string $city
18+
* @property string $country
1919
*
2020
* @package Picqer\Carriers\SendCloud
2121
*/

src/Picqer/Carriers/SendCloud/ShippingMethod.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
/**
66
* Class ShippingMethod
77
*
8-
* @property integer id
9-
* @property string name
10-
* @property float price
11-
* @property array options
12-
* @property array countries
8+
* @property integer $id
9+
* @property string $name
10+
* @property float $price
11+
* @property array $options
12+
* @property array $countries
1313
*
1414
* @package Picqer\Carriers\SendCloud
1515
*/

src/Picqer/Carriers/SendCloud/User.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
/**
66
* Class User
77
*
8-
* @property string username
9-
* @property string company_name
10-
* @property string telephone
11-
* @property string address
12-
* @property string postal_code
13-
* @property string city
14-
* @property string email
15-
* @property string company_logo
16-
* @property string registered
17-
* @property array data
18-
* @property array modules
19-
* @property array invoices
8+
* @property string $username
9+
* @property string $company_name
10+
* @property string $telephone
11+
* @property string $address
12+
* @property string $postal_code
13+
* @property string $city
14+
* @property string $email
15+
* @property string $company_logo
16+
* @property string $registered
17+
* @property array $data
18+
* @property array $modules
19+
* @property array $invoices
2020
*
2121
* @package Picqer\Carriers\SendCloud
2222
*/
@@ -46,4 +46,4 @@ class User extends Model
4646
'plural' => 'users'
4747
];
4848

49-
}
49+
}

0 commit comments

Comments
 (0)