for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Padosoft\AffiliateNetwork;
/**
* Class Merchant
* @package Padosoft\AffiliateNetwork
*/
class Merchant
{
* @var int
public $merchant_ID = 0;
* @var string
public $name = '';
public $url = null;
public $brand_name = null;
public $status = null;
public $launch_date = null;
public $application_date = null;
public $termination_date = null;
* @method createInstance
* @return obj istance
public static function createInstance()
$obj = null;
try {
$obj = new Merchant();
} catch (\Exception $e) {
throw new \Exception('Error creating instance Merchant - ' . $e->getMessage());
}
return $obj;