Cascade\Config\Loader\ClassLoader\Resolver\ExtraOptionsResolver::getParams PHP Method

getParams() public method

Get the parameters we want to resolve against
public getParams ( ) : array
return array $params Associative array of parameters
    public function getParams()
    {
        return $this->params;
    }

Usage Example

 /**
  * Test the resolver contructor
  */
 public function testConstructor()
 {
     $this->assertEquals($this->class, $this->resolver->getReflected()->getName());
     $this->assertEquals($this->params, $this->resolver->getParams());
 }