From b0990c0adf65d4d05f95bef562118f98844cd0fb Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Wed, 12 May 2021 10:18:18 +0200 Subject: [PATCH] add interface for factories --- core/Factory/FactoryInterface.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 core/Factory/FactoryInterface.php diff --git a/core/Factory/FactoryInterface.php b/core/Factory/FactoryInterface.php new file mode 100644 index 0000000..e31ca9e --- /dev/null +++ b/core/Factory/FactoryInterface.php @@ -0,0 +1,12 @@ + + */ +interface FactoryInterface +{ +}