firefly-iii/app/Models/RuleAction.php

33 lines
642 B
PHP
Raw Normal View History

2016-01-11 14:28:29 -06:00
<?php
/**
* RuleAction.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2016-01-11 14:28:29 -06:00
namespace FireflyIII\Models;
use Illuminate\Database\Eloquent\Model;
2016-11-18 13:06:08 -06:00
/**
* Class RuleAction
*
* @package FireflyIII\Models
*/
2016-01-11 14:28:29 -06:00
class RuleAction extends Model
{
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function rule()
{
return $this->belongsTo('FireflyIII\Models\Rule');
}
}