mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Poniverse\Ponyfm\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Poniverse\Ponyfm\Models\AlexaSession
|
|
*
|
|
* @property string $id
|
|
* @property string $payload
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\AlexaSession whereId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\AlexaSession wherePayload($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\AlexaSession whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\AlexaSession whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class AlexaSession extends Model
|
|
{
|
|
public $incrementing = false;
|
|
|
|
protected $table = 'alexa_session';
|
|
|
|
protected $casts = [
|
|
'payload' => 'array'
|
|
];
|
|
|
|
public function put($key, $value)
|
|
{
|
|
$payload = $this->payload;
|
|
|
|
$payload[$key] = $value;
|
|
|
|
$this->payload = $payload;
|
|
}
|
|
|
|
public function get($key, $default = null)
|
|
{
|
|
return $this->payload[$key] ?? $default;
|
|
}
|
|
}
|