blob: 68c95887ad18ba9f0648c7ab9014515ced17321f (
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);
public function getID(): int;
public function getAll(array $exclude = []): array;
}
|