Skip to content
Snippets Groups Projects
Commit d6e29961 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed bug: wrong variable name.

parent 55b6a943
No related merge requests found
...@@ -153,7 +153,7 @@ class Service ...@@ -153,7 +153,7 @@ class Service
{ {
$params = $params ?: new ParamBag(); $params = $params ?: new ParamBag();
$context = __FUNCTION__; $context = __FUNCTION__;
$args = compact('backend', 'id', 'params', 'context'); $args = compact('backend', 'ids', 'params', 'context');
$backend = $this->resolve($backend, $args); $backend = $this->resolve($backend, $args);
$args['backend_instance'] = $backend; $args['backend_instance'] = $backend;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment