summaryrefslogtreecommitdiff
path: root/src/Application.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-10-31 13:40:13 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-10-31 13:40:13 +0100
commit60fd72cd1a1e4e53b9af87e00a8c27687c6b5385 (patch)
treebcf250d05a49a848644af44f09fb897467e3ecb0 /src/Application.php
parentfb05a38a963784716c105e7f214615ad13d2f272 (diff)
Added service providers
Diffstat (limited to 'src/Application.php')
-rw-r--r--src/Application.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Application.php b/src/Application.php
index b62b28a9..c9023c7b 100644
--- a/src/Application.php
+++ b/src/Application.php
@@ -54,7 +54,7 @@ class Application extends Container
public function register($provider)
{
if (is_string($provider)) {
- $provider = $this->get($provider);
+ $provider = $this->make($provider);
}
$this->serviceProviders[] = $provider;