-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnull_values.php
35 lines (26 loc) · 882 Bytes
/
null_values.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
use alsvanzelf\jsonapi\ResourceDocument;
use alsvanzelf\jsonapi\objects\LinkObject;
use alsvanzelf\jsonapi\objects\RelationshipObject;
require 'bootstrap_examples.php';
/**
* tell that a value is non-existing
*/
$document = new ResourceDocument('user', 42);
// the easy ones where value is free format
$document->add('foo', null);
$document->addMeta('foo', null);
// show a specific link is not available
$document->addLink('foo', null);
$document->addLinkObject('bar', new LinkObject());
// show a relationship is not set
$document->addRelationship('bar', null);
$document->addRelationshipObject('baz', new RelationshipObject(RelationshipObject::TO_ONE));
$document->addRelationshipObject('baf', new RelationshipObject(RelationshipObject::TO_MANY));
/**
* sending the response
*/
$options = [
'prettyPrint' => true,
];
echo '<pre>'.$document->toJson($options);