Remove space from end of line

This commit is contained in:
Dennis Eichhorn 2018-02-03 11:52:30 +01:00
parent 0bbec96259
commit ae29c560b3
5 changed files with 15 additions and 15 deletions

View File

@ -72,7 +72,7 @@ class Installer extends InstallerAbstract
`billing_invoice_taxid` varchar(255) DEFAULT NULL, `billing_invoice_taxid` varchar(255) DEFAULT NULL,
`billing_invoice_freightage` int(11) DEFAULT NULL, `billing_invoice_freightage` int(11) DEFAULT NULL,
`billing_invoice_insurance` int(11) DEFAULT NULL, `billing_invoice_insurance` int(11) DEFAULT NULL,
`billing_invoice_referer` int(11) DEFAULT NULL, `billing_invoice_referer` int(11) DEFAULT NULL,
`billing_invoice_referer_name` int(11) DEFAULT NULL, `billing_invoice_referer_name` int(11) DEFAULT NULL,

View File

@ -96,7 +96,7 @@ class Invoice implements \JsonSerializable
private $billZip = ''; private $billZip = '';
private $billCountry = ''; private $billCountry = '';
/** /**
* Person refering for this order. * Person refering for this order.
* *
@ -118,7 +118,7 @@ class Invoice implements \JsonSerializable
private $gross = null; private $gross = null;
private $currency = ISO4217CharEnum::_EUR; private $currency = ISO4217CharEnum::_EUR;
private $info = ''; private $info = '';
private $payment = 0; private $payment = 0;
@ -355,7 +355,7 @@ class Invoice implements \JsonSerializable
{ {
return $this->referer; return $this->referer;
} }
public function setRefererName(string $refererName) /* : void */ public function setRefererName(string $refererName) /* : void */
{ {
$this->refererName = $refererName; $this->refererName = $refererName;
@ -455,7 +455,7 @@ class Invoice implements \JsonSerializable
{ {
return $this->terms; return $this->terms;
} }
public function setTermsText(string $terms) /* : void */ public function setTermsText(string $terms) /* : void */
{ {
$this->termsText = $terms; $this->termsText = $terms;
@ -471,7 +471,7 @@ class Invoice implements \JsonSerializable
$this->shipping = $shipping; $this->shipping = $shipping;
} }
public function getShipping() public function getShipping()
{ {
return $this->shipping; return $this->shipping;
} }
@ -485,7 +485,7 @@ class Invoice implements \JsonSerializable
{ {
return $this->shippingText; return $this->shippingText;
} }
public function getVouchers() : array public function getVouchers() : array
{ {
return $this->vouchers; return $this->vouchers;
@ -518,6 +518,6 @@ class Invoice implements \JsonSerializable
public function jsonSerialize() public function jsonSerialize()
{ {
} }
} }

View File

@ -33,7 +33,7 @@ class InvoiceElement implements \JsonSerializable
private $itemName = ''; private $itemName = '';
private $itemDescription = ''; private $itemDescription = '';
private $quantity = 0; private $quantity = 0;
private $singlePrice = null; private $singlePrice = null;
@ -49,7 +49,7 @@ class InvoiceElement implements \JsonSerializable
private $totalDiscountR = null; private $totalDiscountR = null;
private $discountQ = 0; private $discountQ = 0;
private $singlePriceNet = null; private $singlePriceNet = null;
private $totalPriceNet = null; private $totalPriceNet = null;
@ -93,7 +93,7 @@ class InvoiceElement implements \JsonSerializable
$this->promotion = $promotion; $this->promotion = $promotion;
} }
public function getPromotion() public function getPromotion()
{ {
return $this->promotion; return $this->promotion;
} }
@ -208,7 +208,7 @@ class InvoiceElement implements \JsonSerializable
$this->discountQ = $quantity; $this->discountQ = $quantity;
} }
public function getDiscountQuantity() public function getDiscountQuantity()
{ {
return $this->discountQ; return $this->discountQ;
} }
@ -275,6 +275,6 @@ class InvoiceElement implements \JsonSerializable
public function jsonSerialize() public function jsonSerialize()
{ {
} }
} }

View File

@ -13,4 +13,4 @@
/** /**
* @var \phpOMS\Views\View $this * @var \phpOMS\Views\View $this
*/ */
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();

View File

@ -13,4 +13,4 @@
/** /**
* @var \phpOMS\Views\View $this * @var \phpOMS\Views\View $this
*/ */
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();