installation problems

Issue #2 resolved
Stefan Mogicato created an issue

Me again ;-)

just after installation with the latest build of laravel/framework 89e4c29 I did receive an error: FatalErrorException: Error: Class Hailwood\DatabaseConfigLoader\DatabaseConfigLoader contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Illuminate\Config\LoaderInterface::getNamespaces) in C:\xampp\laravel\vendor\hailwood\database-config-loader\src\Hailwood\DatabaseConfigLoader\DatabaseConfigLoader.php line 164

My solution was to implement the getNamespaces function from Illuminate\Config\LoaderInterface. So I added on the line 129 (right after the addNamespace function) the follwoing snippet:

/**
* Returns all registered namespaces with the config
* loader.
*
* @return array
*/
public function getNamespaces() {}

Hope that this helps

Comments (1)

  1. Log in to comment