Newer
Older
framework / tests / _support / Config / Registrar.php
@Jim Parry Jim Parry on 25 Jul 2019 362 bytes Release 4.0.0-beta.4
<?php namespace Tests\Support\Config;

/**
 * Class Registrar
 *
 * Provides a basic registrar class for testing BaseConfig registration functions.
 */

class Registrar
{

	public static function RegistrarConfig()
	{
		return [
			'bar'    => [
				'first',
				'second',
			],
			'format' => 'nice',
			'fruit'  => [
				'apple',
				'banana',
			],
		];
	}

}