.=< { Star Gans Tq } >=.

  • Home

  • Killme
  • Download
  • Current Path : /home/m/e/h/meharicl/www/phpBB3/vendor/s9e/text-formatter/src/Configurator/
    Upload File
    @Command ~ $  
    Current File : /home/m/e/h/meharicl/www/phpBB3/vendor/s9e/text-formatter/src/Configurator/Bundle.php

    <?php
    
    /**
    * @package   s9e\TextFormatter
    * @copyright Copyright (c) 2010-2020 The s9e authors
    * @license   http://www.opensource.org/licenses/mit-license.php The MIT License
    */
    namespace s9e\TextFormatter\Configurator;
    
    use s9e\TextFormatter\Configurator;
    
    abstract class Bundle
    {
    	/**
    	* Configure a Configurator instance with this bundle's settings
    	*
    	* @param  Configurator $configurator
    	* @return void
    	*/
    	abstract public function configure(Configurator $configurator);
    
    	/**
    	* Create and return a configured instance of Configurator
    	*
    	* @return Configurator
    	*/
    	public static function getConfigurator()
    	{
    		$configurator = new Configurator;
    
    		$bundle  = new static;
    		$bundle->configure($configurator);
    
    		return $configurator;
    	}
    
    	/**
    	* Return extra options to be passed to the bundle generator
    	*
    	* Used by scripts/generateBundles.php
    	*
    	* @return array
    	*/
    	public static function getOptions()
    	{
    		return [];
    	}
    }