2016-09-05 18:16:56 -04:00
|
|
|
<?php namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use Eloquent;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class GatewayType
|
|
|
|
|
*/
|
|
|
|
|
class GatewayType extends Eloquent
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var bool
|
|
|
|
|
*/
|
|
|
|
|
public $timestamps = false;
|
|
|
|
|
|
2016-09-08 22:12:32 -04:00
|
|
|
public $incrementing = false;
|
|
|
|
|
|
2016-09-05 18:16:56 -04:00
|
|
|
/**
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function getName()
|
|
|
|
|
{
|
|
|
|
|
return $this->name;
|
|
|
|
|
}
|
|
|
|
|
}
|