From 9b2fb0825da1ab9fbcf70b916ee9e19e9c5261fa Mon Sep 17 00:00:00 2001 From: HorstOeko Date: Wed, 17 May 2023 06:17:29 +0200 Subject: [PATCH] Code beautify --- src/ZugferdDocumentBuilder.php | 8 ++++---- src/ZugferdDocumentValidator.php | 2 +- src/entities/minimum/qdt/CountryIDType.php | 3 +-- src/entities/minimum/qdt/CurrencyCodeType.php | 3 +-- src/entities/minimum/qdt/DocumentCodeType.php | 3 +-- .../minimum/ram/DocumentContextParameterType.php | 3 +-- .../minimum/ram/ExchangedDocumentContextType.php | 5 ++--- .../minimum/ram/ExchangedDocumentType.php | 7 +++---- .../minimum/ram/HeaderTradeAgreementType.php | 9 ++++----- .../minimum/ram/HeaderTradeDeliveryType.php | 1 - .../minimum/ram/HeaderTradeSettlementType.php | 5 ++--- .../minimum/ram/LegalOrganizationType.php | 3 +-- .../minimum/ram/ReferencedDocumentType.php | 3 +-- .../ram/SupplyChainTradeTransactionType.php | 7 +++---- src/entities/minimum/ram/TaxRegistrationType.php | 3 +-- src/entities/minimum/ram/TradeAddressType.php | 3 +-- src/entities/minimum/ram/TradePartyType.php | 15 +++++++-------- ...TradeSettlementHeaderMonetarySummationType.php | 9 ++++----- .../minimum/rsm/CrossIndustryInvoiceType.php | 7 +++---- src/entities/minimum/udt/AmountType.php | 5 ++--- src/entities/minimum/udt/DateTimeType.php | 3 +-- .../udt/DateTimeType/DateTimeStringAType.php | 4 ++-- src/entities/minimum/udt/IDType.php | 5 ++--- src/entities/minimum/udt/TextType.php | 3 +-- 24 files changed, 49 insertions(+), 70 deletions(-) diff --git a/src/ZugferdDocumentBuilder.php b/src/ZugferdDocumentBuilder.php index 26c76368..2e37848e 100644 --- a/src/ZugferdDocumentBuilder.php +++ b/src/ZugferdDocumentBuilder.php @@ -384,7 +384,7 @@ public function setDocumentBuyerReference(string $buyerreference): ZugferdDocume /** * Detailed information about the seller (=service provider) * - * @param string $name + * @param string $name * The full formal name under which the seller is registered in the * National Register of Legal Entities, Taxable Person or otherwise * acting as person(s) @@ -3508,10 +3508,10 @@ public function setDocumentPositionUltimateShipToAddress(?string $lineone = null * party as a legal entity or legal person. If no identification scheme ($legalorgtype) is provided, * it should be known to the buyer or seller party * @param string|null $legalorgtype The identifier for the identification scheme of the legal - * registration of the party. In particular, the following scheme codes are used: 0021 : SWIFT, 0088 : EAN, - * 0060 : DUNS, 0177 : ODETTE + * registration of the party. In particular, the following scheme codes are used: 0021 : SWIFT, 0088 : EAN, + * 0060 : DUNS, 0177 : ODETTE * @param string|null $legalorgname A name by which the party is known, if different from the party's name - * (also known as the company name) + * (also known as the company name) * @return ZugferdDocumentBuilder */ public function setDocumentPositionUltimateShipToLegalOrganisation(?string $legalorgid, ?string $legalorgtype, ?string $legalorgname): ZugferdDocumentBuilder diff --git a/src/ZugferdDocumentValidator.php b/src/ZugferdDocumentValidator.php index 073b77ab..eb6600c9 100644 --- a/src/ZugferdDocumentValidator.php +++ b/src/ZugferdDocumentValidator.php @@ -43,7 +43,7 @@ class ZugferdDocumentValidator * Constructor * * @codeCoverageIgnore - * @param ZugferdDocument $document + * @param ZugferdDocument $document */ public function __construct(ZugferdDocument $document) { diff --git a/src/entities/minimum/qdt/CountryIDType.php b/src/entities/minimum/qdt/CountryIDType.php index fa396e91..5135ead8 100644 --- a/src/entities/minimum/qdt/CountryIDType.php +++ b/src/entities/minimum/qdt/CountryIDType.php @@ -5,7 +5,6 @@ /** * Class representing CountryIDType * - * * XSD Type: CountryIDType */ class CountryIDType @@ -29,7 +28,7 @@ public function __construct($value) /** * Gets or sets the inner value * - * @param string $value + * @param string $value * @return string */ public function value() diff --git a/src/entities/minimum/qdt/CurrencyCodeType.php b/src/entities/minimum/qdt/CurrencyCodeType.php index 6bf29e8f..b75adeb3 100644 --- a/src/entities/minimum/qdt/CurrencyCodeType.php +++ b/src/entities/minimum/qdt/CurrencyCodeType.php @@ -5,7 +5,6 @@ /** * Class representing CurrencyCodeType * - * * XSD Type: CurrencyCodeType */ class CurrencyCodeType @@ -29,7 +28,7 @@ public function __construct($value) /** * Gets or sets the inner value * - * @param string $value + * @param string $value * @return string */ public function value() diff --git a/src/entities/minimum/qdt/DocumentCodeType.php b/src/entities/minimum/qdt/DocumentCodeType.php index e9582585..6ce912dc 100644 --- a/src/entities/minimum/qdt/DocumentCodeType.php +++ b/src/entities/minimum/qdt/DocumentCodeType.php @@ -5,7 +5,6 @@ /** * Class representing DocumentCodeType * - * * XSD Type: DocumentCodeType */ class DocumentCodeType @@ -29,7 +28,7 @@ public function __construct($value) /** * Gets or sets the inner value * - * @param string $value + * @param string $value * @return string */ public function value() diff --git a/src/entities/minimum/ram/DocumentContextParameterType.php b/src/entities/minimum/ram/DocumentContextParameterType.php index 0edf1d1c..782469fd 100644 --- a/src/entities/minimum/ram/DocumentContextParameterType.php +++ b/src/entities/minimum/ram/DocumentContextParameterType.php @@ -5,7 +5,6 @@ /** * Class representing DocumentContextParameterType * - * * XSD Type: DocumentContextParameterType */ class DocumentContextParameterType @@ -29,7 +28,7 @@ public function getID() /** * Sets a new iD * - * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD + * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD * @return self */ public function setID(\horstoeko\zugferd\entities\minimum\udt\IDType $iD) diff --git a/src/entities/minimum/ram/ExchangedDocumentContextType.php b/src/entities/minimum/ram/ExchangedDocumentContextType.php index 8f10be43..d965496a 100644 --- a/src/entities/minimum/ram/ExchangedDocumentContextType.php +++ b/src/entities/minimum/ram/ExchangedDocumentContextType.php @@ -5,7 +5,6 @@ /** * Class representing ExchangedDocumentContextType * - * * XSD Type: ExchangedDocumentContextType */ class ExchangedDocumentContextType @@ -34,7 +33,7 @@ public function getBusinessProcessSpecifiedDocumentContextParameter() /** * Sets a new businessProcessSpecifiedDocumentContextParameter * - * @param \horstoeko\zugferd\entities\minimum\ram\DocumentContextParameterType $businessProcessSpecifiedDocumentContextParameter + * @param \horstoeko\zugferd\entities\minimum\ram\DocumentContextParameterType $businessProcessSpecifiedDocumentContextParameter * @return self */ public function setBusinessProcessSpecifiedDocumentContextParameter(?\horstoeko\zugferd\entities\minimum\ram\DocumentContextParameterType $businessProcessSpecifiedDocumentContextParameter = null) @@ -56,7 +55,7 @@ public function getGuidelineSpecifiedDocumentContextParameter() /** * Sets a new guidelineSpecifiedDocumentContextParameter * - * @param \horstoeko\zugferd\entities\minimum\ram\DocumentContextParameterType $guidelineSpecifiedDocumentContextParameter + * @param \horstoeko\zugferd\entities\minimum\ram\DocumentContextParameterType $guidelineSpecifiedDocumentContextParameter * @return self */ public function setGuidelineSpecifiedDocumentContextParameter(\horstoeko\zugferd\entities\minimum\ram\DocumentContextParameterType $guidelineSpecifiedDocumentContextParameter) diff --git a/src/entities/minimum/ram/ExchangedDocumentType.php b/src/entities/minimum/ram/ExchangedDocumentType.php index c5c0c3b2..8fc9c1ea 100644 --- a/src/entities/minimum/ram/ExchangedDocumentType.php +++ b/src/entities/minimum/ram/ExchangedDocumentType.php @@ -5,7 +5,6 @@ /** * Class representing ExchangedDocumentType * - * * XSD Type: ExchangedDocumentType */ class ExchangedDocumentType @@ -39,7 +38,7 @@ public function getID() /** * Sets a new iD * - * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD + * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD * @return self */ public function setID(\horstoeko\zugferd\entities\minimum\udt\IDType $iD) @@ -61,7 +60,7 @@ public function getTypeCode() /** * Sets a new typeCode * - * @param string $typeCode + * @param string $typeCode * @return self */ public function setTypeCode($typeCode) @@ -83,7 +82,7 @@ public function getIssueDateTime() /** * Sets a new issueDateTime * - * @param \horstoeko\zugferd\entities\minimum\udt\DateTimeType $issueDateTime + * @param \horstoeko\zugferd\entities\minimum\udt\DateTimeType $issueDateTime * @return self */ public function setIssueDateTime(\horstoeko\zugferd\entities\minimum\udt\DateTimeType $issueDateTime) diff --git a/src/entities/minimum/ram/HeaderTradeAgreementType.php b/src/entities/minimum/ram/HeaderTradeAgreementType.php index 1da27153..623ebc97 100644 --- a/src/entities/minimum/ram/HeaderTradeAgreementType.php +++ b/src/entities/minimum/ram/HeaderTradeAgreementType.php @@ -5,7 +5,6 @@ /** * Class representing HeaderTradeAgreementType * - * * XSD Type: HeaderTradeAgreementType */ class HeaderTradeAgreementType @@ -44,7 +43,7 @@ public function getBuyerReference() /** * Sets a new buyerReference * - * @param string $buyerReference + * @param string $buyerReference * @return self */ public function setBuyerReference($buyerReference) @@ -66,7 +65,7 @@ public function getSellerTradeParty() /** * Sets a new sellerTradeParty * - * @param \horstoeko\zugferd\entities\minimum\ram\TradePartyType $sellerTradeParty + * @param \horstoeko\zugferd\entities\minimum\ram\TradePartyType $sellerTradeParty * @return self */ public function setSellerTradeParty(\horstoeko\zugferd\entities\minimum\ram\TradePartyType $sellerTradeParty) @@ -88,7 +87,7 @@ public function getBuyerTradeParty() /** * Sets a new buyerTradeParty * - * @param \horstoeko\zugferd\entities\minimum\ram\TradePartyType $buyerTradeParty + * @param \horstoeko\zugferd\entities\minimum\ram\TradePartyType $buyerTradeParty * @return self */ public function setBuyerTradeParty(\horstoeko\zugferd\entities\minimum\ram\TradePartyType $buyerTradeParty) @@ -110,7 +109,7 @@ public function getBuyerOrderReferencedDocument() /** * Sets a new buyerOrderReferencedDocument * - * @param \horstoeko\zugferd\entities\minimum\ram\ReferencedDocumentType $buyerOrderReferencedDocument + * @param \horstoeko\zugferd\entities\minimum\ram\ReferencedDocumentType $buyerOrderReferencedDocument * @return self */ public function setBuyerOrderReferencedDocument(?\horstoeko\zugferd\entities\minimum\ram\ReferencedDocumentType $buyerOrderReferencedDocument = null) diff --git a/src/entities/minimum/ram/HeaderTradeDeliveryType.php b/src/entities/minimum/ram/HeaderTradeDeliveryType.php index dbb073b5..8b3526c6 100644 --- a/src/entities/minimum/ram/HeaderTradeDeliveryType.php +++ b/src/entities/minimum/ram/HeaderTradeDeliveryType.php @@ -5,7 +5,6 @@ /** * Class representing HeaderTradeDeliveryType * - * * XSD Type: HeaderTradeDeliveryType */ class HeaderTradeDeliveryType diff --git a/src/entities/minimum/ram/HeaderTradeSettlementType.php b/src/entities/minimum/ram/HeaderTradeSettlementType.php index b383e4e0..60536da8 100644 --- a/src/entities/minimum/ram/HeaderTradeSettlementType.php +++ b/src/entities/minimum/ram/HeaderTradeSettlementType.php @@ -5,7 +5,6 @@ /** * Class representing HeaderTradeSettlementType * - * * XSD Type: HeaderTradeSettlementType */ class HeaderTradeSettlementType @@ -34,7 +33,7 @@ public function getInvoiceCurrencyCode() /** * Sets a new invoiceCurrencyCode * - * @param string $invoiceCurrencyCode + * @param string $invoiceCurrencyCode * @return self */ public function setInvoiceCurrencyCode($invoiceCurrencyCode) @@ -56,7 +55,7 @@ public function getSpecifiedTradeSettlementHeaderMonetarySummation() /** * Sets a new specifiedTradeSettlementHeaderMonetarySummation * - * @param \horstoeko\zugferd\entities\minimum\ram\TradeSettlementHeaderMonetarySummationType $specifiedTradeSettlementHeaderMonetarySummation + * @param \horstoeko\zugferd\entities\minimum\ram\TradeSettlementHeaderMonetarySummationType $specifiedTradeSettlementHeaderMonetarySummation * @return self */ public function setSpecifiedTradeSettlementHeaderMonetarySummation(\horstoeko\zugferd\entities\minimum\ram\TradeSettlementHeaderMonetarySummationType $specifiedTradeSettlementHeaderMonetarySummation) diff --git a/src/entities/minimum/ram/LegalOrganizationType.php b/src/entities/minimum/ram/LegalOrganizationType.php index 13308780..da836060 100644 --- a/src/entities/minimum/ram/LegalOrganizationType.php +++ b/src/entities/minimum/ram/LegalOrganizationType.php @@ -5,7 +5,6 @@ /** * Class representing LegalOrganizationType * - * * XSD Type: LegalOrganizationType */ class LegalOrganizationType @@ -29,7 +28,7 @@ public function getID() /** * Sets a new iD * - * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD + * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD * @return self */ public function setID(?\horstoeko\zugferd\entities\minimum\udt\IDType $iD = null) diff --git a/src/entities/minimum/ram/ReferencedDocumentType.php b/src/entities/minimum/ram/ReferencedDocumentType.php index a7807911..a6810207 100644 --- a/src/entities/minimum/ram/ReferencedDocumentType.php +++ b/src/entities/minimum/ram/ReferencedDocumentType.php @@ -5,7 +5,6 @@ /** * Class representing ReferencedDocumentType * - * * XSD Type: ReferencedDocumentType */ class ReferencedDocumentType @@ -29,7 +28,7 @@ public function getIssuerAssignedID() /** * Sets a new issuerAssignedID * - * @param \horstoeko\zugferd\entities\minimum\udt\IDType $issuerAssignedID + * @param \horstoeko\zugferd\entities\minimum\udt\IDType $issuerAssignedID * @return self */ public function setIssuerAssignedID(\horstoeko\zugferd\entities\minimum\udt\IDType $issuerAssignedID) diff --git a/src/entities/minimum/ram/SupplyChainTradeTransactionType.php b/src/entities/minimum/ram/SupplyChainTradeTransactionType.php index cb7dcc7d..5eb468b7 100644 --- a/src/entities/minimum/ram/SupplyChainTradeTransactionType.php +++ b/src/entities/minimum/ram/SupplyChainTradeTransactionType.php @@ -5,7 +5,6 @@ /** * Class representing SupplyChainTradeTransactionType * - * * XSD Type: SupplyChainTradeTransactionType */ class SupplyChainTradeTransactionType @@ -39,7 +38,7 @@ public function getApplicableHeaderTradeAgreement() /** * Sets a new applicableHeaderTradeAgreement * - * @param \horstoeko\zugferd\entities\minimum\ram\HeaderTradeAgreementType $applicableHeaderTradeAgreement + * @param \horstoeko\zugferd\entities\minimum\ram\HeaderTradeAgreementType $applicableHeaderTradeAgreement * @return self */ public function setApplicableHeaderTradeAgreement(\horstoeko\zugferd\entities\minimum\ram\HeaderTradeAgreementType $applicableHeaderTradeAgreement) @@ -61,7 +60,7 @@ public function getApplicableHeaderTradeDelivery() /** * Sets a new applicableHeaderTradeDelivery * - * @param \horstoeko\zugferd\entities\minimum\ram\HeaderTradeDeliveryType $applicableHeaderTradeDelivery + * @param \horstoeko\zugferd\entities\minimum\ram\HeaderTradeDeliveryType $applicableHeaderTradeDelivery * @return self */ public function setApplicableHeaderTradeDelivery(\horstoeko\zugferd\entities\minimum\ram\HeaderTradeDeliveryType $applicableHeaderTradeDelivery) @@ -83,7 +82,7 @@ public function getApplicableHeaderTradeSettlement() /** * Sets a new applicableHeaderTradeSettlement * - * @param \horstoeko\zugferd\entities\minimum\ram\HeaderTradeSettlementType $applicableHeaderTradeSettlement + * @param \horstoeko\zugferd\entities\minimum\ram\HeaderTradeSettlementType $applicableHeaderTradeSettlement * @return self */ public function setApplicableHeaderTradeSettlement(\horstoeko\zugferd\entities\minimum\ram\HeaderTradeSettlementType $applicableHeaderTradeSettlement) diff --git a/src/entities/minimum/ram/TaxRegistrationType.php b/src/entities/minimum/ram/TaxRegistrationType.php index 06b41b95..c38e2073 100644 --- a/src/entities/minimum/ram/TaxRegistrationType.php +++ b/src/entities/minimum/ram/TaxRegistrationType.php @@ -5,7 +5,6 @@ /** * Class representing TaxRegistrationType * - * * XSD Type: TaxRegistrationType */ class TaxRegistrationType @@ -29,7 +28,7 @@ public function getID() /** * Sets a new iD * - * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD + * @param \horstoeko\zugferd\entities\minimum\udt\IDType $iD * @return self */ public function setID(\horstoeko\zugferd\entities\minimum\udt\IDType $iD) diff --git a/src/entities/minimum/ram/TradeAddressType.php b/src/entities/minimum/ram/TradeAddressType.php index bda522b3..a2fdcf6b 100644 --- a/src/entities/minimum/ram/TradeAddressType.php +++ b/src/entities/minimum/ram/TradeAddressType.php @@ -5,7 +5,6 @@ /** * Class representing TradeAddressType * - * * XSD Type: TradeAddressType */ class TradeAddressType @@ -29,7 +28,7 @@ public function getCountryID() /** * Sets a new countryID * - * @param string $countryID + * @param string $countryID * @return self */ public function setCountryID($countryID) diff --git a/src/entities/minimum/ram/TradePartyType.php b/src/entities/minimum/ram/TradePartyType.php index e85276b1..1ac4e4db 100644 --- a/src/entities/minimum/ram/TradePartyType.php +++ b/src/entities/minimum/ram/TradePartyType.php @@ -5,7 +5,6 @@ /** * Class representing TradePartyType * - * * XSD Type: TradePartyType */ class TradePartyType @@ -46,7 +45,7 @@ public function getName() /** * Sets a new name * - * @param string $name + * @param string $name * @return self */ public function setName($name) @@ -68,7 +67,7 @@ public function getSpecifiedLegalOrganization() /** * Sets a new specifiedLegalOrganization * - * @param \horstoeko\zugferd\entities\minimum\ram\LegalOrganizationType $specifiedLegalOrganization + * @param \horstoeko\zugferd\entities\minimum\ram\LegalOrganizationType $specifiedLegalOrganization * @return self */ public function setSpecifiedLegalOrganization(?\horstoeko\zugferd\entities\minimum\ram\LegalOrganizationType $specifiedLegalOrganization = null) @@ -90,7 +89,7 @@ public function getPostalTradeAddress() /** * Sets a new postalTradeAddress * - * @param \horstoeko\zugferd\entities\minimum\ram\TradeAddressType $postalTradeAddress + * @param \horstoeko\zugferd\entities\minimum\ram\TradeAddressType $postalTradeAddress * @return self */ public function setPostalTradeAddress(?\horstoeko\zugferd\entities\minimum\ram\TradeAddressType $postalTradeAddress = null) @@ -103,7 +102,7 @@ public function setPostalTradeAddress(?\horstoeko\zugferd\entities\minimum\ram\T * Adds as specifiedTaxRegistration * * @return self - * @param \horstoeko\zugferd\entities\minimum\ram\TaxRegistrationType $specifiedTaxRegistration + * @param \horstoeko\zugferd\entities\minimum\ram\TaxRegistrationType $specifiedTaxRegistration */ public function addToSpecifiedTaxRegistration(\horstoeko\zugferd\entities\minimum\ram\TaxRegistrationType $specifiedTaxRegistration) { @@ -114,7 +113,7 @@ public function addToSpecifiedTaxRegistration(\horstoeko\zugferd\entities\minimu /** * isset specifiedTaxRegistration * - * @param int|string $index + * @param int|string $index * @return bool */ public function issetSpecifiedTaxRegistration($index) @@ -125,7 +124,7 @@ public function issetSpecifiedTaxRegistration($index) /** * unset specifiedTaxRegistration * - * @param int|string $index + * @param int|string $index * @return void */ public function unsetSpecifiedTaxRegistration($index) @@ -146,7 +145,7 @@ public function getSpecifiedTaxRegistration() /** * Sets a new specifiedTaxRegistration * - * @param \horstoeko\zugferd\entities\minimum\ram\TaxRegistrationType[] $specifiedTaxRegistration + * @param \horstoeko\zugferd\entities\minimum\ram\TaxRegistrationType[] $specifiedTaxRegistration * @return self */ public function setSpecifiedTaxRegistration(array $specifiedTaxRegistration = null) diff --git a/src/entities/minimum/ram/TradeSettlementHeaderMonetarySummationType.php b/src/entities/minimum/ram/TradeSettlementHeaderMonetarySummationType.php index e61dd5ee..82326a9a 100644 --- a/src/entities/minimum/ram/TradeSettlementHeaderMonetarySummationType.php +++ b/src/entities/minimum/ram/TradeSettlementHeaderMonetarySummationType.php @@ -5,7 +5,6 @@ /** * Class representing TradeSettlementHeaderMonetarySummationType * - * * XSD Type: TradeSettlementHeaderMonetarySummationType */ class TradeSettlementHeaderMonetarySummationType @@ -44,7 +43,7 @@ public function getTaxBasisTotalAmount() /** * Sets a new taxBasisTotalAmount * - * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $taxBasisTotalAmount + * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $taxBasisTotalAmount * @return self */ public function setTaxBasisTotalAmount(\horstoeko\zugferd\entities\minimum\udt\AmountType $taxBasisTotalAmount) @@ -66,7 +65,7 @@ public function getTaxTotalAmount() /** * Sets a new taxTotalAmount * - * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $taxTotalAmount + * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $taxTotalAmount * @return self */ public function setTaxTotalAmount(?\horstoeko\zugferd\entities\minimum\udt\AmountType $taxTotalAmount = null) @@ -88,7 +87,7 @@ public function getGrandTotalAmount() /** * Sets a new grandTotalAmount * - * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $grandTotalAmount + * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $grandTotalAmount * @return self */ public function setGrandTotalAmount(\horstoeko\zugferd\entities\minimum\udt\AmountType $grandTotalAmount) @@ -110,7 +109,7 @@ public function getDuePayableAmount() /** * Sets a new duePayableAmount * - * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $duePayableAmount + * @param \horstoeko\zugferd\entities\minimum\udt\AmountType $duePayableAmount * @return self */ public function setDuePayableAmount(\horstoeko\zugferd\entities\minimum\udt\AmountType $duePayableAmount) diff --git a/src/entities/minimum/rsm/CrossIndustryInvoiceType.php b/src/entities/minimum/rsm/CrossIndustryInvoiceType.php index ba1ebd26..cb1cca35 100644 --- a/src/entities/minimum/rsm/CrossIndustryInvoiceType.php +++ b/src/entities/minimum/rsm/CrossIndustryInvoiceType.php @@ -5,7 +5,6 @@ /** * Class representing CrossIndustryInvoiceType * - * * XSD Type: CrossIndustryInvoiceType */ class CrossIndustryInvoiceType @@ -39,7 +38,7 @@ public function getExchangedDocumentContext() /** * Sets a new exchangedDocumentContext * - * @param \horstoeko\zugferd\entities\minimum\ram\ExchangedDocumentContextType $exchangedDocumentContext + * @param \horstoeko\zugferd\entities\minimum\ram\ExchangedDocumentContextType $exchangedDocumentContext * @return self */ public function setExchangedDocumentContext(\horstoeko\zugferd\entities\minimum\ram\ExchangedDocumentContextType $exchangedDocumentContext) @@ -61,7 +60,7 @@ public function getExchangedDocument() /** * Sets a new exchangedDocument * - * @param \horstoeko\zugferd\entities\minimum\ram\ExchangedDocumentType $exchangedDocument + * @param \horstoeko\zugferd\entities\minimum\ram\ExchangedDocumentType $exchangedDocument * @return self */ public function setExchangedDocument(\horstoeko\zugferd\entities\minimum\ram\ExchangedDocumentType $exchangedDocument) @@ -83,7 +82,7 @@ public function getSupplyChainTradeTransaction() /** * Sets a new supplyChainTradeTransaction * - * @param \horstoeko\zugferd\entities\minimum\ram\SupplyChainTradeTransactionType $supplyChainTradeTransaction + * @param \horstoeko\zugferd\entities\minimum\ram\SupplyChainTradeTransactionType $supplyChainTradeTransaction * @return self */ public function setSupplyChainTradeTransaction(\horstoeko\zugferd\entities\minimum\ram\SupplyChainTradeTransactionType $supplyChainTradeTransaction) diff --git a/src/entities/minimum/udt/AmountType.php b/src/entities/minimum/udt/AmountType.php index dd4e0047..48b77681 100644 --- a/src/entities/minimum/udt/AmountType.php +++ b/src/entities/minimum/udt/AmountType.php @@ -5,7 +5,6 @@ /** * Class representing AmountType * - * * XSD Type: AmountType */ class AmountType @@ -34,7 +33,7 @@ public function __construct($value) /** * Gets or sets the inner value * - * @param float $value + * @param float $value * @return float */ public function value() @@ -68,7 +67,7 @@ public function getCurrencyID() /** * Sets a new currencyID * - * @param string $currencyID + * @param string $currencyID * @return self */ public function setCurrencyID($currencyID) diff --git a/src/entities/minimum/udt/DateTimeType.php b/src/entities/minimum/udt/DateTimeType.php index bbb01e41..f7961b2b 100644 --- a/src/entities/minimum/udt/DateTimeType.php +++ b/src/entities/minimum/udt/DateTimeType.php @@ -5,7 +5,6 @@ /** * Class representing DateTimeType * - * * XSD Type: DateTimeType */ class DateTimeType @@ -29,7 +28,7 @@ public function getDateTimeString() /** * Sets a new dateTimeString * - * @param \horstoeko\zugferd\entities\minimum\udt\DateTimeType\DateTimeStringAType $dateTimeString + * @param \horstoeko\zugferd\entities\minimum\udt\DateTimeType\DateTimeStringAType $dateTimeString * @return self */ public function setDateTimeString(?\horstoeko\zugferd\entities\minimum\udt\DateTimeType\DateTimeStringAType $dateTimeString = null) diff --git a/src/entities/minimum/udt/DateTimeType/DateTimeStringAType.php b/src/entities/minimum/udt/DateTimeType/DateTimeStringAType.php index 7ee4545f..523752b4 100644 --- a/src/entities/minimum/udt/DateTimeType/DateTimeStringAType.php +++ b/src/entities/minimum/udt/DateTimeType/DateTimeStringAType.php @@ -31,7 +31,7 @@ public function __construct($value) /** * Gets or sets the inner value * - * @param string $value + * @param string $value * @return string */ public function value() @@ -65,7 +65,7 @@ public function getFormat() /** * Sets a new format * - * @param string $format + * @param string $format * @return self */ public function setFormat($format) diff --git a/src/entities/minimum/udt/IDType.php b/src/entities/minimum/udt/IDType.php index 0ff55bd5..19779150 100644 --- a/src/entities/minimum/udt/IDType.php +++ b/src/entities/minimum/udt/IDType.php @@ -5,7 +5,6 @@ /** * Class representing IDType * - * * XSD Type: IDType */ class IDType @@ -34,7 +33,7 @@ public function __construct($value) /** * Gets or sets the inner value * - * @param string $value + * @param string $value * @return string */ public function value() @@ -68,7 +67,7 @@ public function getSchemeID() /** * Sets a new schemeID * - * @param string $schemeID + * @param string $schemeID * @return self */ public function setSchemeID($schemeID) diff --git a/src/entities/minimum/udt/TextType.php b/src/entities/minimum/udt/TextType.php index 4f06e3c4..ae3d8156 100644 --- a/src/entities/minimum/udt/TextType.php +++ b/src/entities/minimum/udt/TextType.php @@ -5,7 +5,6 @@ /** * Class representing TextType * - * * XSD Type: TextType */ class TextType @@ -29,7 +28,7 @@ public function __construct($value) /** * Gets or sets the inner value * - * @param string $value + * @param string $value * @return string */ public function value()