for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* m'Manager | Invoices Management System
*
* This content is released under the Proprietary License (Proprietary)
* Copyright (c) 2017, Eric Claver AKAFFOU - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* @package m'Manager
* @author Eric Claver AKAFFOU
* @copyright Copyright (c) 2017, on'Eric Computing, Inc. (https://www.onericcomputing.com/)
* @license https://www.mmanager.fr Proprietary License
* @link https://codecanyon.net/item/mmanager-invoices-management-system/19866435?s_rank=1
* @since Version 1.0.0
* @filesource
*/
namespace Mmanager\Domain\Entity;
use Mmanager\Domain\Entity\AbstractEntity;
* Customer Entity
class Order extends AbstractEntity {
protected $customer;
protected $orderNumber;
* @return mixed
public function getCustomer()
{
return $this->customer;
}
* @param mixed $customer
* @return self
public function setCustomer($customer)
$this->customer = $customer;
return $this;
public function getOrderNumber()
return $this->orderNumber;
* @param mixed $orderNumber
public function setOrderNumber($orderNumber)
$this->orderNumber = $orderNumber;