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