Cascade\Tests\Config\Loader\ClassLoader\Resolver\ConstructorResolverTest::missingOptionsProvider PHP 메소드

missingOptionsProvider() 공개 메소드

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 contructor param position
public missingOptionsProvider ( ) : array
리턴 array of arrays with expected resolved values and options used as input
    public function missingOptionsProvider()
    {
        return array(array(array(), array('optionalB' => 'BBB'), array('optionalB' => 'there', 'optionalA' => 'hello')));
    }