Nelmio\Alice\Definition\Value\NestedValue::getValue PHP 메소드

getValue() 공개 메소드

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

Usage Example

예제 #1
0
 public function testIsNotImmutable()
 {
     $value = new NestedValue([$arg0 = new \stdClass()]);
     $this->assertSame($arg0, $value->getValue()[0]);
 }