Skip to content

Commit

Permalink
fix: MetadataRepositoryInterface docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriolino committed Oct 29, 2024
1 parent 9cd2461 commit 56dd411
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Repository/MetadataRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,15 @@
/**
* MetadataRepositoryInterface
*
* @template T of MetadataInterface
* @extends ObjectRepository<T>
* @extends ObjectRepository<MetadataInterface>
*
* @author Rogério Lino <[email protected]>
*/
interface MetadataRepositoryInterface extends ObjectRepository, BaseRepository
{
/** @return ?T */
/** @return ?MetadataInterface */
public function get(string $namespace, string $name): ?MetadataInterface;

/** @return T */
/** @return MetadataInterface */
public function set(string $namespace, string $name, mixed $value = null): MetadataInterface;
}

0 comments on commit 56dd411

Please sign in to comment.