Nelmio\Alice\Definition\Value\NestedValue::getValue PHP Method

getValue() public method

public getValue ( ) : array
return array
    public function getValue() : array
    {
        return $this->values;
    }

Usage Example

コード例 #1
0
ファイル: NestedValueTest.php プロジェクト: nelmio/alice
 public function testIsNotImmutable()
 {
     $value = new NestedValue([$arg0 = new \stdClass()]);
     $this->assertSame($arg0, $value->getValue()[0]);
 }