Skip to content

Commit

Permalink
Update PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed May 5, 2022
1 parent 9041c78 commit cb295a4
Show file tree
Hide file tree
Showing 131 changed files with 384 additions and 384 deletions.
2 changes: 1 addition & 1 deletion src/accounting/Model/AccountingAccount.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeAccountingAccount($this);
Expand Down
38 changes: 19 additions & 19 deletions src/accounting/Model/BankDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,141 +92,141 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getAccountNumber(): ?string {
return $this->accountNumber;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getBankCode(): ?string {
return $this->bankCode;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getBankDomiciliation(): ?string {
return $this->bankDomiciliation;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getBankName(): ?string {
return $this->bankName;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getBic(): ?string {
return $this->bic;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getBranchCode(): ?string {
return $this->branchCode;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getIban(): ?string {
return $this->iban;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getOwner(): ?string {
return $this->owner;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getRibKey(): ?string {
return $this->ribKey;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeBankDetails($this);
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setAccountNumber(?string $accountNumber): BankDetailsInterface {
$this->accountNumber = $accountNumber;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setBankCode(?string $bankCode): BankDetailsInterface {
$this->bankCode = $bankCode;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setBankDomiciliation(?string $bankDomiciliation): BankDetailsInterface {
$this->bankDomiciliation = $bankDomiciliation;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setBankName(?string $bankName): BankDetailsInterface {
$this->bankName = $bankName;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setBic(?string $bic): BankDetailsInterface {
$this->bic = $bic;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setBranchCode(?string $branchCode): BankDetailsInterface {
$this->branchCode = $branchCode;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setIban(?string $iban): BankDetailsInterface {
$this->iban = $iban;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setOwner(?string $owner): BankDetailsInterface {
$this->owner = $owner;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setRibKey(?string $ribKey): BankDetailsInterface {
$this->ribKey = $ribKey;
Expand Down
2 changes: 1 addition & 1 deletion src/accounting/Model/PaymentChoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializePaymentChoice($this);
Expand Down
2 changes: 1 addition & 1 deletion src/accounting/Model/PaymentTerm.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializePaymentTerm($this);
Expand Down
10 changes: 5 additions & 5 deletions src/accounting/Model/VatRate.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,36 +48,36 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getPurchasesAccountingAccount(): ?AccountingAccountInterface {
return $this->purchasesAccountingAccount;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getSalesAccountingAccount(): ?AccountingAccountInterface {
return $this->salesAccountingAccount;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeVatRate($this);
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setPurchasesAccountingAccount(?AccountingAccountInterface $purchasesAccountingAccount): VatRateInterface {
$this->purchasesAccountingAccount = $purchasesAccountingAccount;
return $this;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setSalesAccountingAccount(?AccountingAccountInterface $salesAccountingAccount): VatRateInterface {
$this->salesAccountingAccount = $salesAccountingAccount;
Expand Down
14 changes: 7 additions & 7 deletions src/billing/Model/Billable.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function addDetail(BillableDetailInterface $detail): BillableInterface {
$this->details->add($detail);
Expand All @@ -79,28 +79,28 @@ public function addDetail(BillableDetailInterface $detail): BillableInterface {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getDetails(): array {
return $this->details->toArray();
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getParent(): ?BillableInterface {
return $this->parent;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeBillable($this);
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function onSubmit(): void {

Expand All @@ -111,7 +111,7 @@ public function onSubmit(): void {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function removeDetail(BillableDetailInterface $detail): BillableInterface {
$this->details->removeElement($detail);
Expand All @@ -131,7 +131,7 @@ protected function setDetails(Collection $details): BillableInterface {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setParent(?BillableInterface $parent): BillableInterface {
$this->parent = $parent;
Expand Down
8 changes: 4 additions & 4 deletions src/billing/Model/BillableDetail.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,21 +55,21 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getBillable(): ?BillableInterface {
return $this->billable;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeBillableDetail($this);
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function onSubmit(): void {
parent::onSubmit();
Expand All @@ -81,7 +81,7 @@ public function onSubmit(): void {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setBillable(?BillableInterface $billable): BillableDetailInterface {
$this->billable = $billable;
Expand Down
2 changes: 1 addition & 1 deletion src/billing/Model/DeliveryNote.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeDeliveryNote($this);
Expand Down
2 changes: 1 addition & 1 deletion src/billing/Model/PurchaseBill.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializePurchaseBill($this);
Expand Down
2 changes: 1 addition & 1 deletion src/billing/Model/PurchaseOrder.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializePurchaseOrder($this);
Expand Down
6 changes: 3 additions & 3 deletions src/billing/Model/Quotation.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function getExpirationDate(): ?DateTime {
return $this->expirationDate;
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeQuotation($this);
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function setExpirationDate(?DateTime $expirationDate): QuotationInterface {
$this->expirationDate = $expirationDate;
Expand Down
2 changes: 1 addition & 1 deletion src/billing/Model/SalesBill.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __construct() {
}

/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function jsonSerialize(): array {
return JsonSerializer::serializeSalesBill($this);
Expand Down
Loading

0 comments on commit cb295a4

Please sign in to comment.