From 41e147ba8ed07bc746007ee50bb682bd216ae57d Mon Sep 17 00:00:00 2001 From: Romain Pouclet Date: Fri, 6 Apr 2012 10:58:12 +0200 Subject: [PATCH] Change 'getFileLocator' method's visibility to protected as it's needed in the FixtureLoadCommand class --- Command/AbstractPropelCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/AbstractPropelCommand.php b/Command/AbstractPropelCommand.php index 5a39695..ba93c19 100644 --- a/Command/AbstractPropelCommand.php +++ b/Command/AbstractPropelCommand.php @@ -505,7 +505,7 @@ EOT; return sprintf('@%s/Resources/config/%s', $bundle->getName(), $schemaPath); } - private function getFileLocator() + protected function getFileLocator() { return $this->getContainer()->get('file_locator'); }