for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Sandro Keil (https://sandro-keil.de)
*
* @link http://github.com/sandrokeil/interop-config for the canonical source repository
* @copyright Copyright (c) 2015-2016 Sandro Keil
* @license http://github.com/sandrokeil/interop-config/blob/master/LICENSE.md New BSD License
*/
namespace InteropTest\Config\TestAsset;
use Interop\Config\ConfigurationTrait;
use Interop\Config\RequiresConfig;
class FlexibleConfiguration implements RequiresConfig
{
use ConfigurationTrait;
public function dimensions()
return ['one', 'two', 'three', 'four'];
}