mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
11 lines
139 B
PHP
11 lines
139 B
PHP
<?php
|
|
|
|
|
|
class ComponentType extends Eloquent
|
|
{
|
|
public function components()
|
|
{
|
|
return $this->hasMany('Component');
|
|
}
|
|
|
|
}
|