bulk commit

This commit is contained in:
omair saleh
2020-08-24 09:54:49 +08:00
parent bd9fe94ddc
commit 7f712e6ca8
108 changed files with 1601 additions and 583 deletions
@@ -0,0 +1,44 @@
<?php
namespace App\Classes\Modules\Companies\DataTransferObjects;
use App\Models\Company;
class ModuleObject
{
/** @var Company */
private $company;
/** @var int */
private $type;
/**
* ModuleObject constructor.
* @param Company $company
* @param int $type
*/
public function __construct(Company $company, int $type)
{
$this->company = $company;
$this->type = $type;
}
/**
* @return Company
*/
public function getCompany(): Company
{
return $this->company;
}
/**
* @return int
*/
public function getType(): int
{
return $this->type;
}
}