new API endpoint to save invoice meta-fields (#5916)

This commit is contained in:
Kevin Papst
2026-04-25 18:14:10 +02:00
committed by GitHub
parent 087350ab72
commit 3eebb02ad3
39 changed files with 1427 additions and 659 deletions

View File

@@ -13,11 +13,14 @@ use Doctrine\Persistence\ObjectManager;
/**
* Defines the sample data to load in during controller tests.
* @template TEntity
*/
interface TestFixture
{
/**
* Load data fixtures with the passed EntityManager and returns the created objects.
*
* @return non-empty-array<TEntity>
*/
public function load(ObjectManager $manager): array;
}