__construct() public method

Set default options based on the supportedOptions provided
public __construct ( array $options = null )
$options array
 /**
  * Constructor
  *
  * @param ActionRequest $request The current action request. If none is specified it will be created from the environment.
  * @param array $options
  */
 public function __construct(ActionRequest $request = null, array $options = [])
 {
     $this->request = $request;
     parent::__construct($options);
 }