We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ff3e8 commit 678ce95Copy full SHA for 678ce95
README.md
@@ -114,7 +114,7 @@ $instance = (object) [
114
115
$evaluator->evaluate($instance, $staticEvaluationContext);
116
117
-echo $instance->firstname; // Returns "n/a"
+echo $instance->firstname; // Prints "n/a"
118
```
119
120
### Decoding of encoded content
@@ -138,7 +138,7 @@ $instance = 'eyJmb28iOiAiYmFyIn0K'; // Base64 encoded JSON '{"foo": "bar"}'
138
139
$evaluator->evaluate($instance, $staticEvaluationContext); // Returns true
140
141
-echo $instance; // Returns '{"foo": "bar"}'
+echo $instance; // Prints '{"foo": "bar"}'
142
143
144
## Assert content media type
0 commit comments