From 2ada3dffda0536c67e5028613c6987e941611526 Mon Sep 17 00:00:00 2001 From: Angelo Date: Tue, 2 Jun 2015 22:16:06 +0200 Subject: [PATCH] Doctrine proxy directory doctrine::doctrine.proxy.directory is wrong. It doesn't work if I put the path in my doctrine config file. When I deleted doctrine::, it did work. It also makes more sense. Please check this, as this might be a fix --- 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;