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