Mmoreram\PHPFormatter\Tests\Loader\ConfigLoaderTest::dataLoadConfigValues PHP Method

dataLoadConfigValues() public method

data for testLoadConfigValues.
public dataLoadConfigValues ( ) : array
return array Values
    public function dataLoadConfigValues()
    {
        return [[[], [], $this->defaultValues, $this->defaultValues], [['use-sort' => ['group' => ['Doctrine', 'Elcodi'], 'group-type' => 'one']], [], $this->defaultValues, ['group' => ['Doctrine', 'Elcodi'], 'group-type' => 'one', 'sort-type' => 'alph', 'sort-direction' => 'desc']], [['use-sort' => ['group' => ['Doctrine', 'Elcodi'], 'group-type' => 'one']], ['sort-type' => 'length', 'sort-direction' => 'asc'], $this->defaultValues, ['group' => ['Doctrine', 'Elcodi'], 'group-type' => 'one', 'sort-type' => 'length', 'sort-direction' => 'asc']], [[], ['sort-type' => 'length', 'sort-direction' => 'asc'], $this->defaultValues, ['group' => ['Symfony', '_main', 'Mmoreram'], 'group-type' => 'each', 'sort-type' => 'length', 'sort-direction' => 'asc']]];
    }