<?php

namespace Drupal\Core\Entity;

interface EntityInterface {

    public function id(): string|int|null;
    public function isNew(): bool;

}
