mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-13 21:56:14 +00:00
33 lines
701 B
PHP
33 lines
701 B
PHP
<?php
|
|
|
|
namespace Anikeen\Id\Resources;
|
|
|
|
use Anikeen\Id\Concerns\MagicProperties;
|
|
use Anikeen\Id\Result;
|
|
use JsonSerializable;
|
|
|
|
abstract class BaseResource implements JsonSerializable
|
|
{
|
|
use MagicProperties;
|
|
|
|
public function __construct(protected Result $result)
|
|
{
|
|
$this->setMagicProperties($this->result->data);
|
|
}
|
|
|
|
/**
|
|
* Returns the collection of resources as an array.
|
|
*/
|
|
public function toArray(): array
|
|
{
|
|
return (array)$this->result->data;
|
|
}
|
|
|
|
/**
|
|
* Returns the collection of resources as a JSON string.
|
|
*/
|
|
public function jsonSerialize(): array
|
|
{
|
|
return $this->toArray();
|
|
}
|
|
} |