for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gewaer\Models;
class Currency extends AbstractModel
{
/**
*
* @var integer
*/
public $id;
* @var string
public $country;
public $currency;
public $code;
public $symbel;
public $created_at;
public $updated_at;
public $is_deleted;
* Initialize method for model.
public function initialize()
$this->setSource('currency');
}
* Returns table name mapped in the model.
* @return string
public function getSource() : string
return 'currency';