mirror of
https://github.com/flarum/core.git
synced 2025-10-17 09:46:14 +02:00
- Deprecated all events involved with Formatter - Refactor ->configure() method on extender not to use events - Add extender methods for ->render() and ->parse() - Add integration tests
32 lines
598 B
PHP
32 lines
598 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Formatter\Event;
|
|
|
|
use s9e\TextFormatter\Configurator;
|
|
|
|
/**
|
|
* @deprecated beta 15, removed beta 16. Use the Formatter extender instead.
|
|
*/
|
|
class Configuring
|
|
{
|
|
/**
|
|
* @var Configurator
|
|
*/
|
|
public $configurator;
|
|
|
|
/**
|
|
* @param Configurator $configurator
|
|
*/
|
|
public function __construct(Configurator $configurator)
|
|
{
|
|
$this->configurator = $configurator;
|
|
}
|
|
}
|