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

Smarter translate method for Results object.

- This should not be limited to a single parameter.
parent df55269a
No related merge requests found
......@@ -611,14 +611,14 @@ abstract class Results implements ServiceLocatorAwareInterface
}
/**
* Translate a string if a translator is available.
*
* @param string $msg Message to translate
* Translate a string if a translator is available (proxies method in Options).
*
* @return string
*/
public function translate($msg)
public function translate()
{
return $this->getOptions()->translate($msg);
return call_user_func_array(
[$this->getOptions(), 'translate'], func_get_args()
);
}
}
\ No newline at end of file
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