@@ -157,53 +157,33 @@ public function toString(): string
157
157
*/
158
158
public function toArray ()
159
159
{
160
- try {
161
- return json_decode ($ this ->toJson (), true , 512 , JSON_THROW_ON_ERROR );
162
- } catch (\Throwable $ ex ) {
163
- throw new \LogicException (
164
- 'Unable to convert document to an array. See previous exception for cause of failure. ' ,
165
- 0 ,
166
- $ ex ,
167
- );
168
- }
160
+ return json_decode (
161
+ json: $ this ->toJson (),
162
+ associative: true ,
163
+ flags: JSON_THROW_ON_ERROR ,
164
+ );
169
165
}
170
166
171
167
/**
172
168
* @inheritDoc
173
169
*/
174
170
public function jsonSerialize (): array
175
171
{
176
- try {
177
- $ this ->prepareEncoder ();
178
-
179
- return $ this ->serialize ();
180
- } catch (\Throwable $ ex ) {
181
- throw new \LogicException (
182
- 'Unable to serialize compound document. See previous exception for cause of failure. ' ,
183
- 0 ,
184
- $ ex ,
185
- );
186
- }
172
+ $ this ->prepareEncoder ();
173
+
174
+ return $ this ->serialize ();
187
175
}
188
176
189
177
/**
190
178
* @inheritDoc
191
179
*/
192
180
public function toJson ($ options = 0 )
193
181
{
194
- try {
195
- $ this ->prepareEncoder ();
196
-
197
- $ this ->encoder ->withEncodeOptions ($ options | JSON_THROW_ON_ERROR );
198
-
199
- return $ this ->encode ();
200
- } catch (\Throwable $ ex ) {
201
- throw new \LogicException (
202
- 'Unable to encode compound document. See previous exception for cause of failure. ' ,
203
- 0 ,
204
- $ ex ,
205
- );
206
- }
182
+ $ this ->prepareEncoder ();
183
+
184
+ $ this ->encoder ->withEncodeOptions ($ options | JSON_THROW_ON_ERROR );
185
+
186
+ return $ this ->encode ();
207
187
}
208
188
209
189
/**
0 commit comments