blob: 8eaa089d1537e501239cecb533f0d4e6627fef9c (
plain)
1
2
3
4
5
6
7
8
|
<?php
interface EntityInterface {
public function get(string $attribute);
public function set(string $attribute, $value);
public function getID(): int;
public function getAll(array $exclude = []): array;
}
|