Skip to content

Commit

Permalink
Merge pull request #50 from beschoenen/main
Browse files Browse the repository at this point in the history
Fix PHPDoc properties
  • Loading branch information
casperbakker authored Jan 8, 2024
2 parents 6424649 + 1a726b0 commit 8c42905
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 63 deletions.
16 changes: 8 additions & 8 deletions src/Picqer/Carriers/SendCloud/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
/**
* Class Invoice
*
* @property integer id
* @property string description
* @property float price_excl
* @property float price_incl
* @property string date
* @property boolean isPayed
* @property string items
* @property integer $id
* @property string $description
* @property float $price_excl
* @property float $price_incl
* @property string $date
* @property boolean $isPayed
* @property string $items
*
* @package Picqer\Carriers\SendCloud
*/
Expand All @@ -36,4 +36,4 @@ class Invoice extends Model
'plural' => 'invoices'
];

}
}
48 changes: 24 additions & 24 deletions src/Picqer/Carriers/SendCloud/Parcel.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@
/**
* Class Parcel
*
* @property integer id
* @property string name
* @property string company_name
* @property string address
* @property string house_number
* @property array address_divided
* @property string city
* @property string postal_code
* @property string telephone
* @property string email
* @property array status
* @property array data
* @property array country
* @property string country_state
* @property array shipment
* @property array label
* @property bool requestShipment
* @property string order_number
* @property string tracking_number
* @property float total_order_value
* @property string total_order_value_currency
* @property string weight
* @property string sender_address
* @property integer quantity
* @property integer $id
* @property string $name
* @property string $company_name
* @property string $address
* @property string $house_number
* @property array $address_divided
* @property string $city
* @property string $postal_code
* @property string $telephone
* @property string $email
* @property array $status
* @property array $data
* @property array $country
* @property string $country_state
* @property array $shipment
* @property array $label
* @property bool $requestShipment
* @property string $order_number
* @property string $tracking_number
* @property float $total_order_value
* @property string $total_order_value_currency
* @property string $weight
* @property string $sender_address
* @property integer $quantity
*
* @package Picqer\Carriers\SendCloud
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Picqer/Carriers/SendCloud/ParcelStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace Picqer\Carriers\SendCloud;

/**
* @property integer id
* @property string message
* @property integer $id
* @property string $message
*/
class ParcelStatus extends Model
{
Expand Down
22 changes: 11 additions & 11 deletions src/Picqer/Carriers/SendCloud/SenderAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
/**
* Class SenderAddress
*
* @property integer id
* @property string company_name
* @property string contact_name
* @property string email
* @property string telephone
* @property string street
* @property string house_number
* @property string postal_box
* @property string postal_code
* @property string city
* @property string country
* @property integer $id
* @property string $company_name
* @property string $contact_name
* @property string $email
* @property string $telephone
* @property string $street
* @property string $house_number
* @property string $postal_box
* @property string $postal_code
* @property string $city
* @property string $country
*
* @package Picqer\Carriers\SendCloud
*/
Expand Down
10 changes: 5 additions & 5 deletions src/Picqer/Carriers/SendCloud/ShippingMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
/**
* Class ShippingMethod
*
* @property integer id
* @property string name
* @property float price
* @property array options
* @property array countries
* @property integer $id
* @property string $name
* @property float $price
* @property array $options
* @property array $countries
*
* @package Picqer\Carriers\SendCloud
*/
Expand Down
26 changes: 13 additions & 13 deletions src/Picqer/Carriers/SendCloud/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
/**
* Class User
*
* @property string username
* @property string company_name
* @property string telephone
* @property string address
* @property string postal_code
* @property string city
* @property string email
* @property string company_logo
* @property string registered
* @property array data
* @property array modules
* @property array invoices
* @property string $username
* @property string $company_name
* @property string $telephone
* @property string $address
* @property string $postal_code
* @property string $city
* @property string $email
* @property string $company_logo
* @property string $registered
* @property array $data
* @property array $modules
* @property array $invoices
*
* @package Picqer\Carriers\SendCloud
*/
Expand Down Expand Up @@ -46,4 +46,4 @@ class User extends Model
'plural' => 'users'
];

}
}

0 comments on commit 8c42905

Please sign in to comment.