for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Saito - The Threaded Web Forum
*
* @copyright Copyright (c) the Saito Project Developers
* @link https://github.com/Schlaefer/Saito
* @license http://opensource.org/licenses/MIT
*/
namespace BbcodeParser\Lib\Processors;
use Saito\Markup\MarkupSettings;
abstract class BbcodeProcessor
{
protected $_sOptions;
* Constructor
* @param \Saito\Markup\MarkupSettings $options options
public function __construct(MarkupSettings $options)
$this->_sOptions = $options;
}
* Process
* @param string $string string to process
* @return string
abstract public function process($string);