firefly-iii/app/Transformers/RuleGroupTransformer.php

64 lines
1.8 KiB
PHP
Raw Normal View History

2018-06-23 23:51:22 -05:00
<?php
/**
* RuleGroupTransformer.php
2020-02-16 06:57:18 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2018-06-23 23:51:22 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-06-23 23:51:22 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2018-06-23 23:51:22 -05:00
*
* This program is distributed in the hope that it will be useful,
2018-06-23 23:51:22 -05:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2018-06-23 23:51:22 -05:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-06-23 23:51:22 -05:00
*/
declare(strict_types=1);
namespace FireflyIII\Transformers;
use FireflyIII\Models\RuleGroup;
/**
* Class RuleGroupTransformer
*/
class RuleGroupTransformer extends AbstractTransformer
2018-06-23 23:51:22 -05:00
{
/**
* Transform the rule group
*
* @param RuleGroup $ruleGroup
*
* @return array
*/
public function transform(RuleGroup $ruleGroup): array
{
2020-10-23 12:11:25 -05:00
return [
2018-12-07 00:49:16 -06:00
'id' => (int)$ruleGroup->id,
'created_at' => $ruleGroup->created_at->toAtomString(),
2018-12-12 13:30:25 -06:00
'updated_at' => $ruleGroup->updated_at->toAtomString(),
2018-12-07 00:49:16 -06:00
'title' => $ruleGroup->title,
'description' => $ruleGroup->description,
'order' => $ruleGroup->order,
'active' => $ruleGroup->active,
'links' => [
2018-06-23 23:51:22 -05:00
[
'rel' => 'self',
'uri' => '/rule_groups/' . $ruleGroup->id,
],
],
];
}
}