From bb228abfa35ff2972d0a8dd1e6233b4e4758f5c1 Mon Sep 17 00:00:00 2001 From: Tobias Gross-Vogt <tgros@tugraz.at> Date: Thu, 1 Dec 2022 14:20:03 +0100 Subject: [PATCH] organization now implementes NamedEntityInterface --- composer.lock | 8 ++++---- src/Entity/OrganizationInterface.php | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/composer.lock b/composer.lock index f9a8425..42da4da 100644 --- a/composer.lock +++ b/composer.lock @@ -169,11 +169,11 @@ }, { "name": "dbp/relay-core-bundle", - "version": "v0.1.61", + "version": "v0.1.64", "source": { "type": "git", "url": "https://gitlab.tugraz.at/dbp/relay/dbp-relay-core-bundle", - "reference": "996fc7d43361720e3749401fd0f005ed3d97404b" + "reference": "f1469c6034fcf8d32901f72b4cbec20e59c25d0b" }, "require": { "api-platform/core": "^2.6.8 <2.7.0", @@ -237,7 +237,7 @@ "AGPL-3.0-or-later" ], "description": "The core bundle of the Relay API gateway", - "time": "2022-11-23T12:35:13+00:00" + "time": "2022-12-01T12:48:26+00:00" }, { "name": "doctrine/annotations", @@ -10043,5 +10043,5 @@ "platform-overrides": { "php": "7.3" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.2.0" } diff --git a/src/Entity/OrganizationInterface.php b/src/Entity/OrganizationInterface.php index c5467f4..c0993eb 100644 --- a/src/Entity/OrganizationInterface.php +++ b/src/Entity/OrganizationInterface.php @@ -4,7 +4,9 @@ declare(strict_types=1); namespace Dbp\Relay\BaseOrganizationBundle\Entity; -interface OrganizationInterface +use Dbp\Relay\CoreBundle\Entity\NamedEntityInterface; + +interface OrganizationInterface extends NamedEntityInterface { public function setIdentifier(string $identifier): void; -- GitLab