name : Integration.php
<?php
namespace MacsiDigital\OAuth2;

use Illuminate\Database\Eloquent\Model;

class Integration implements Model
{
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'accessToken', 'refreshToken', 'expires', 'additional',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'accessToken', 'refreshToken', 'expires', 'additional',
    ];

    /**
     * The attributes that should be cast.
     *
     * @var array
     */
    protected $casts = [
        'additional' => 'array',
    ];
}

© 2025 UnknownSec
afwwrfwafr45458465
Password