View file phpBB3/vendor/s9e/regexp-builder/src/Runner.php

File size: 773B
<?php declare(strict_types=1);

/**
* @package   s9e\RegexpBuilder
* @copyright Copyright (c) 2016-2022 The s9e authors
* @license   http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\RegexpBuilder;

use s9e\RegexpBuilder\Passes\PassInterface;

class Runner
{
	/**
	* @var PassInterface[]
	*/
	protected $passes = [];

	/**
	* Add a pass to the list
	*
	* @param  PassInterface $pass
	* @return void
	*/
	public function addPass(PassInterface $pass): void
	{
		$this->passes[] = $pass;
	}

	/**
	* Run all passes on the list of strings
	*
	* @param  array[] $strings
	* @return array[]
	*/
	public function run(array $strings): array
	{
		foreach ($this->passes as $pass)
		{
			$strings = $pass->run($strings);
		}

		return $strings;
	}
}