Cascade\Tests\Config\Loader\ClassLoader\Resolver\ExtraOptionsResolverTest::invalidOptionsProvider PHP Method

invalidOptionsProvider() public method

The order of the input options does not matter and is somewhat random. The resolution should reconcile those options and match them up with the closure param position
public invalidOptionsProvider ( ) : array
return array of arrays with expected resolved values and options used as input
    public function invalidOptionsProvider()
    {
        return array(array(array('optionalB' => 'there', 'optionalA' => 'hello', 'additionalInvalid' => 'some unknow param'), array('someInvalidOptionA' => 'abc', 'someInvalidOptionB' => 'def')));
    }