@@ -10,9 +10,11 @@ yaml: |
10
10
a: Steve
11
11
b: Clark
12
12
c: Brian
13
+ e: notnull
13
14
bar:
14
15
a: before
15
16
d: other
17
+ e: ~
16
18
<<: *foo
17
19
b: new
18
20
x: Oren
@@ -46,13 +48,13 @@ yaml: |
46
48
<<: *nestedref
47
49
php : |
48
50
array(
49
- 'foo' => array('a' => 'Steve', 'b' => 'Clark', 'c' => 'Brian'),
50
- 'bar' => array('a' => 'before', 'd' => 'other', 'b' => 'new', 'c' => array('foo' => 'bar', 'bar' => 'foo'), 'x' => 'Oren'),
51
+ 'foo' => array('a' => 'Steve', 'b' => 'Clark', 'c' => 'Brian', 'e' => 'notnull' ),
52
+ 'bar' => array('a' => 'before', 'd' => 'other', 'e' => null, ' b' => 'new', 'c' => array('foo' => 'bar', 'bar' => 'foo'), 'x' => 'Oren'),
51
53
'duplicate' => array('foo' => 'bar'),
52
54
'foo2' => array('a' => 'Ballmer'),
53
55
'ding' => array('fi', 'fei', 'fo', 'fam'),
54
- 'check' => array('a' => 'Steve', 'b' => 'Clark', 'c' => 'Brian', 'fi', 'fei', 'fo', 'fam', 'isit' => 'tested'),
55
- 'head' => array('a' => 'Steve', 'b' => 'Clark', 'c' => 'Brian', 'fi', 'fei', 'fo', 'fam'),
56
+ 'check' => array('a' => 'Steve', 'b' => 'Clark', 'c' => 'Brian', 'e' => 'notnull', ' fi', 'fei', 'fo', 'fam', 'isit' => 'tested'),
57
+ 'head' => array('a' => 'Steve', 'b' => 'Clark', 'c' => 'Brian', 'e' => 'notnull', ' fi', 'fei', 'fo', 'fam'),
56
58
'taz' => array('a' => 'Steve', 'w' => array('p' => 1234)),
57
59
'nested' => array('a' => 'Steve', 'w' => array('p' => 12345), 'd' => 'Doug', 'z' => array('p' => 12345))
58
60
)
0 commit comments