File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Installation
16
16
``` json
17
17
{
18
18
"require" : {
19
- "parse/php-sdk" : " 1.2 .*"
19
+ "parse/php-sdk" : " 1.3 .*"
20
20
}
21
21
}
22
22
```
@@ -152,6 +152,12 @@ $object->save();
152
152
153
153
// Or pass true to use the master key to override ACLs when saving:
154
154
$object->save(true);
155
+
156
+ // encode an object for later use
157
+ $encoded = $object->encode();
158
+
159
+ // decode an object
160
+ $decodedObject = ParseObject::decode($encoded);
155
161
```
156
162
157
163
Users:
Original file line number Diff line number Diff line change @@ -111,11 +111,11 @@ final class ParseClient
111
111
private static $ caFile ;
112
112
113
113
/**
114
- * Constant for version string to include with requests. Currently 1.2.10 .
114
+ * Constant for version string to include with requests. Currently 1.3.0 .
115
115
*
116
116
* @var string
117
117
*/
118
- const VERSION_STRING = 'php1.2.10 ' ;
118
+ const VERSION_STRING = 'php1.3.0 ' ;
119
119
120
120
/**
121
121
* Parse\Client::initialize, must be called before using Parse features.
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public function testInstallation()
99
99
$ appVersion = '1.0.0 ' ;
100
100
$ appName = 'Foo Bar App ' ;
101
101
$ appIdentifier = 'foo-bar-app-id ' ;
102
- $ parseVersion = '1.2.3 ' ;
102
+ $ parseVersion = '1.3.0 ' ;
103
103
104
104
$ installation = new ParseInstallation ();
105
105
$ installation ->set ('installationId ' , $ installationId );
You can’t perform that action at this time.
0 commit comments