From e148c0c713257d31e6ffda60e4dd9bf1df0ecc1c Mon Sep 17 00:00:00 2001 From: Angelo Date: Sun, 17 May 2015 11:12:19 +0200 Subject: [PATCH] Minor change doctrine::doctrine.proxy.directory gave NULL while doctrine.proxy.directory gave me the directory. Might be worth looking into. --- src/Console/GenerateProxiesCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/GenerateProxiesCommand.php b/src/Console/GenerateProxiesCommand.php index 3de3aa1..8749c23 100644 --- a/src/Console/GenerateProxiesCommand.php +++ b/src/Console/GenerateProxiesCommand.php @@ -41,7 +41,7 @@ public function fire() $this->error('No metadata found to generate any entities.'); exit; } - $directory = $this->laravel['config']['doctrine::doctrine.proxy.directory']; + $directory = $this->laravel['config']['doctrine.proxy.directory']; if ( ! $directory) { $this->error('The proxy directory has not been set.'); exit;