getAll() public method

Get all the values stored in this ValueHolder as an array.
public getAll ( ) : array
return array
Example #1
0
 public function testGetAll()
 {
     $initialValues = array('key' => 'value', 'other' => 'otherValue');
     $valueHolder = new ValueHolder($initialValues);
     $this->assertEquals($initialValues, $valueHolder->getAll());
 }