From adad6ca280f2284a0ea4a1c41c8adea4ae1b141a Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 27 Aug 2015 13:27:29 +0200 Subject: clean up app container --- dependencyinjection/ifactory.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 dependencyinjection/ifactory.php (limited to 'dependencyinjection') diff --git a/dependencyinjection/ifactory.php b/dependencyinjection/ifactory.php new file mode 100644 index 000000000..cb0e740d1 --- /dev/null +++ b/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