unwrap() public method

Unwrap the context value recursively
public unwrap ( ) : mixed
return mixed
 /**
  * @test
  * @dataProvider arrayValues
  *
  * @param mixed $value
  * @param mixed $expectedUnwrappedValue
  */
 public function unwrapArrayValues($value, $expectedUnwrappedValue)
 {
     $context = new Context($value);
     $unwrappedValue = $context->unwrap();
     $this->assertSame($expectedUnwrappedValue, $unwrappedValue);
 }