aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/ORM/EntityInterface.php
blob: db503e72de9207d4b25e4fb45ec6c6cfa35ae4bf (plain)
1
2
3
4
5
6
7
8
9
10
<?php
namespace ORM;

interface EntityInterface {
	public function get(string $attribute);
	public function set(string $attribute, $value): void;

	public function getID(): int;
	public function getAll(array $exclude = []): array;
}