mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Note.php
 | 
						|
 * Copyright (c) 2019 james@firefly-iii.org
 | 
						|
 *
 | 
						|
 * This file is part of Firefly III (https://github.com/firefly-iii).
 | 
						|
 *
 | 
						|
 * 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.
 | 
						|
 *
 | 
						|
 * This program is distributed in the hope that it will be useful,
 | 
						|
 * 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.
 | 
						|
 *
 | 
						|
 * 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/>.
 | 
						|
 */
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace FireflyIII\Models;
 | 
						|
 | 
						|
use Carbon\Carbon;
 | 
						|
use Eloquent;
 | 
						|
use FireflyIII\Support\Models\ReturnsIntegerIdTrait;
 | 
						|
use Illuminate\Database\Eloquent\Casts\Attribute;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Database\Eloquent\Relations\MorphTo;
 | 
						|
use Illuminate\Database\Eloquent\SoftDeletes;
 | 
						|
use Illuminate\Database\Query\Builder;
 | 
						|
 | 
						|
/**
 | 
						|
 * FireflyIII\Models\Note
 | 
						|
 *
 | 
						|
 * @property int             $id
 | 
						|
 * @property null|Carbon     $created_at
 | 
						|
 * @property null|Carbon     $updated_at
 | 
						|
 * @property null|Carbon     $deleted_at
 | 
						|
 * @property int             $noteable_id
 | 
						|
 * @property string          $noteable_type
 | 
						|
 * @property null|string     $title
 | 
						|
 * @property null|string     $text
 | 
						|
 * @property \Eloquent|Model $noteable
 | 
						|
 *
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note newModelQuery()
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note newQuery()
 | 
						|
 * @method static Builder|Note                               onlyTrashed()
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note query()
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereCreatedAt($value)
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereDeletedAt($value)
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereId($value)
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereNoteableId($value)
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereNoteableType($value)
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereText($value)
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereTitle($value)
 | 
						|
 * @method static \Illuminate\Database\Eloquent\Builder|Note whereUpdatedAt($value)
 | 
						|
 * @method static Builder|Note                               withTrashed()
 | 
						|
 * @method static Builder|Note                               withoutTrashed()
 | 
						|
 *
 | 
						|
 * @mixin Eloquent
 | 
						|
 */
 | 
						|
class Note extends Model
 | 
						|
{
 | 
						|
    use ReturnsIntegerIdTrait;
 | 
						|
    use SoftDeletes;
 | 
						|
 | 
						|
    protected $casts
 | 
						|
                        = [
 | 
						|
                            'created_at' => 'datetime',
 | 
						|
                            'updated_at' => 'datetime',
 | 
						|
                            'deleted_at' => 'datetime',
 | 
						|
                        ];
 | 
						|
 | 
						|
    protected $fillable = ['title', 'text', 'noteable_id', 'noteable_type'];
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get all the owning noteable models.
 | 
						|
     */
 | 
						|
    public function noteable(): MorphTo
 | 
						|
    {
 | 
						|
        return $this->morphTo();
 | 
						|
    }
 | 
						|
 | 
						|
    protected function noteableId(): Attribute
 | 
						|
    {
 | 
						|
        return Attribute::make(
 | 
						|
            get: static fn ($value) => (int)$value,
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |