From 004fcbbcc7609ca83807f2e38967ef54f469bf72 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 23 Jul 2016 21:24:54 +0200 Subject: Move to new directory structure --- lib/DependencyInjection/IFactory.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lib/DependencyInjection/IFactory.php (limited to 'lib/DependencyInjection') diff --git a/lib/DependencyInjection/IFactory.php b/lib/DependencyInjection/IFactory.php new file mode 100644 index 000000000..cb0e740d1 --- /dev/null +++ b/lib/DependencyInjection/IFactory.php @@ -0,0 +1,24 @@ + + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ + +namespace OCA\News\DependencyInjection; + +interface IFactory { + + /** + * Method that constructs the object + * @return mixed the constructed object + */ + public function build(); + +} -- cgit v1.2.3