mirror of
https://github.com/flarum/core.git
synced 2025-07-25 18:51:40 +02:00
Remove another unused parameter
This commit is contained in:
@@ -73,7 +73,7 @@ class Formatter
|
||||
*/
|
||||
public function render($xml, $context = null)
|
||||
{
|
||||
$renderer = $this->getRenderer($context);
|
||||
$renderer = $this->getRenderer();
|
||||
|
||||
$this->events->dispatch(new Rendering($renderer, $context, $xml));
|
||||
|
||||
@@ -177,10 +177,9 @@ class Formatter
|
||||
/**
|
||||
* Get the renderer.
|
||||
*
|
||||
* @param mixed $context
|
||||
* @return \s9e\TextFormatter\Renderer
|
||||
*/
|
||||
protected function getRenderer($context = null)
|
||||
protected function getRenderer()
|
||||
{
|
||||
spl_autoload_register(function ($class) {
|
||||
if (file_exists($file = $this->cacheDir.'/'.$class.'.php')) {
|
||||
|
Reference in New Issue
Block a user