diff --git a/src/Picqer/Carriers/SendCloud/Invoice.php b/src/Picqer/Carriers/SendCloud/Invoice.php index b73e462..8697cf3 100644 --- a/src/Picqer/Carriers/SendCloud/Invoice.php +++ b/src/Picqer/Carriers/SendCloud/Invoice.php @@ -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 */ @@ -36,4 +36,4 @@ class Invoice extends Model 'plural' => 'invoices' ]; -} \ No newline at end of file +} diff --git a/src/Picqer/Carriers/SendCloud/Parcel.php b/src/Picqer/Carriers/SendCloud/Parcel.php index 2849cb8..013d38a 100644 --- a/src/Picqer/Carriers/SendCloud/Parcel.php +++ b/src/Picqer/Carriers/SendCloud/Parcel.php @@ -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 */ diff --git a/src/Picqer/Carriers/SendCloud/ParcelStatus.php b/src/Picqer/Carriers/SendCloud/ParcelStatus.php index 8763a4b..914e167 100644 --- a/src/Picqer/Carriers/SendCloud/ParcelStatus.php +++ b/src/Picqer/Carriers/SendCloud/ParcelStatus.php @@ -3,8 +3,8 @@ namespace Picqer\Carriers\SendCloud; /** - * @property integer id - * @property string message + * @property integer $id + * @property string $message */ class ParcelStatus extends Model { diff --git a/src/Picqer/Carriers/SendCloud/SenderAddress.php b/src/Picqer/Carriers/SendCloud/SenderAddress.php index 26db8ed..3e440ff 100644 --- a/src/Picqer/Carriers/SendCloud/SenderAddress.php +++ b/src/Picqer/Carriers/SendCloud/SenderAddress.php @@ -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 */ diff --git a/src/Picqer/Carriers/SendCloud/ShippingMethod.php b/src/Picqer/Carriers/SendCloud/ShippingMethod.php index 5ae5efd..d81c490 100644 --- a/src/Picqer/Carriers/SendCloud/ShippingMethod.php +++ b/src/Picqer/Carriers/SendCloud/ShippingMethod.php @@ -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 */ diff --git a/src/Picqer/Carriers/SendCloud/User.php b/src/Picqer/Carriers/SendCloud/User.php index 2513c72..21789da 100644 --- a/src/Picqer/Carriers/SendCloud/User.php +++ b/src/Picqer/Carriers/SendCloud/User.php @@ -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 */ @@ -46,4 +46,4 @@ class User extends Model 'plural' => 'users' ]; -} \ No newline at end of file +}