Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/max-kut/model-entities
https://github.com/max-kut/model-entities
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/max-kut/model-entities
- Owner: max-kut
- Created: 2020-02-09T13:56:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-10T16:09:19.000Z (over 4 years ago)
- Last Synced: 2024-04-18T12:33:05.738Z (9 months ago)
- Language: PHP
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#PHP обертка над `json`-данными
Служит для более управляемой и документированной работы с данными json-полей моделей или ответов различных API
###Установка
`composer require maxkut/model-entities`###Концепция
Библиотека включает два абстрактных класса `\Entities\Entity` и `\Entities\EntityCollection
`, которые содержат вспомогательные методы для типизации свойств конечных объектов.
Очень важно документировать свойства создаваемых классов. Так Вы не забудете, какие свойства есть у того или иного объекта. В примере ниже задокументированы свойства класса Settings в PhpDoc. Плюс Ваша ide будет вам помогать с подсказками.###Пример
```PHP
// Как пример сложных json полей модели App\Models\User
namespace App\Models\Entities\User;
use Entities\Entity;
/**
* Class Settings
* @property bool $property1
* @property int $property2
* @property array $property3
*/
class Settings extends Entity
{
/**
* @var bool $strictParams - если true,
* то любые свойства, которые не объявлены в $attributes, $casts
или для него нет акцессора/мутатора
* вызовут исключение Entities\Exceptions\NotDefinedPropertyException
*/
public $strictParams = true;protected $attributes = [
'property1' => null,
'property2' => null,
'property3' => null,
];protected $casts = [
'property1' => 'bool',
'property2' => 'int',
'property3' => 'array',
];
}///////////////////////////////////////////
/// На примере моделей Eloquent ORM
/// надо создать методы преобразования (акцессор и мутатор) для этого поляnamespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Models\Entities\User\Settings;class User extends Model
{
//...
protected function getSettingsAttribute($value){
return Settings::make($value);
}
protected function setSettingsAttribute($value){
$this->attributes['settings'] = Settings::make($value)->toJson();
}
}
```