/** * Returns the data as an associative array. * * @return array with all data */ public function getOptionsAsArray() { return $this->options->toArray(); }
/** * @expectedException \Trellis\Common\Error\RuntimeException */ public function testExchangeArrayFails() { $options = new Options(); $options->exchangeArray(array('foo' => 'omg')); }