1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/models/AccountGateway.php
Hillel Coren 99800f38dd Bug fixes
2013-12-04 00:00:01 +02:00

11 lines
158 B
PHP
Executable File

<?php
class AccountGateway extends Eloquent
{
protected $hidden = array('config');
public function gateway()
{
return $this->belongsTo('Gateway');
}
}