summaryrefslogtreecommitdiff
path: root/app/Application.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-01-16 13:20:23 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-01-16 15:13:06 +0000
commit81083bd99d5befe23efe030034abf7249acecce6 (patch)
tree0ab27f4b52ecd128bd9877bfe9219ebc6b814855 /app/Application.php
parent0422c1fe06810b05ea48309b1f3ae558fb2153d0 (diff)
downloadwebtrees-81083bd99d5befe23efe030034abf7249acecce6.tar.gz
webtrees-81083bd99d5befe23efe030034abf7249acecce6.tar.bz2
webtrees-81083bd99d5befe23efe030034abf7249acecce6.zip
Replace webtrees resolver class with laravel container class
Diffstat (limited to 'app/Application.php')
-rw-r--r--app/Application.php58
1 files changed, 58 insertions, 0 deletions
diff --git a/app/Application.php b/app/Application.php
new file mode 100644
index 0000000000..70582390b7
--- /dev/null
+++ b/app/Application.php
@@ -0,0 +1,58 @@
+<?php
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2019 webtrees development team
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+declare(strict_types=1);
+
+namespace Fisharebest\Webtrees;
+
+use Illuminate\Container\Container;
+use ReflectionMethod;
+use ReflectionParameter;
+use function array_map;
+
+/**
+ * Application container.
+ */
+class Application extends Container
+{
+ /**
+ * Call an object's method, injecting all its dependencies.
+ *
+ * @param object $object
+ * @param string $method
+ *
+ * @return mixed
+ */
+ public function dispatch($object, string $method)
+ {
+ $reflector = new ReflectionMethod($object, $method);
+
+ $parameters = $this->makeParameters($reflector->getParameters());
+
+ return $reflector->invoke($object, ...$parameters);
+ }
+
+ /**
+ * @param array $parameters
+ *
+ * @return array
+ */
+ private function makeParameters(array $parameters): array
+ {
+ return array_map(function (ReflectionParameter $parameter) {
+ return $this->make($parameter->getClass()->name);
+ }, $parameters);
+ }
+}