Example #1
0
 public function setUp()
 {
     $this->body = ['properties' => ['foo' => (object) [], 'bar' => (object) [], 'baz' => (object) ['readOnly' => true]]];
     $this->validator = $this->prophesize(Validator::class);
     $this->schema = new Schema($this->body, $this->validator->reveal());
 }