forked from getsentry/sentry-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractSerializerTest.php
More file actions
761 lines (637 loc) · 25 KB
/
AbstractSerializerTest.php
File metadata and controls
761 lines (637 loc) · 25 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
<?php
declare(strict_types=1);
namespace Sentry\Tests\Serializer;
use PHPUnit\Framework\TestCase;
use Sentry\Serializer\AbstractSerializer;
use Sentry\Serializer\RepresentationSerializerInterface;
use Sentry\Serializer\SerializerInterface;
abstract class AbstractSerializerTest extends TestCase
{
abstract protected function createSerializer(): AbstractSerializer;
/**
* This method is only existed because of testSerializeCallable.
*/
public static function setUpBeforeClass(): void
{
}
public static function serializeAllObjectsDataProvider(): array
{
return [
['serializeAllObjects' => false],
['serializeAllObjects' => true],
];
}
/**
* @dataProvider serializeAllObjectsDataProvider
*/
public function testStdClassAreArrays(bool $serializeAllObjects): void
{
$serializer = $this->createSerializer();
if ($serializeAllObjects) {
$serializer->setSerializeAllObjects(true);
}
$input = ['foo' => 'BAR'];
$result = $this->invokeSerialization($serializer, (object) $input);
$this->assertSame($input, $result);
}
public function testObjectsAreStrings(): void
{
$serializer = $this->createSerializer();
$input = new SerializerTestObject();
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame('Object Sentry\Tests\Serializer\SerializerTestObject', $result);
}
/**
* @requires PHP >= 8.1
*/
public function testEnumsAreNames(): void
{
$serializer = $this->createSerializer();
$input = SerializerTestEnum::CASE_NAME;
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame('Enum Sentry\Tests\Serializer\SerializerTestEnum::CASE_NAME', $result);
}
/**
* @requires PHP >= 8.1
*/
public function testBackedEnumsIncludeValue(): void
{
$serializer = $this->createSerializer();
$input = SerializerTestBackedEnum::CASE_NAME;
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame('Enum Sentry\Tests\Serializer\SerializerTestBackedEnum::CASE_NAME(case_value)', $result);
}
/**
* @requires PHP >= 8.1
*
* @dataProvider serializeAllObjectsDataProvider
*/
public function testEnumsAreNotSerializedAsObjects(bool $serializeAllObjects): void
{
$serializer = $this->createSerializer();
if ($serializeAllObjects) {
$serializer->setSerializeAllObjects(true);
}
$input = SerializerTestEnum::CASE_NAME;
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame('Enum Sentry\Tests\Serializer\SerializerTestEnum::CASE_NAME', $result);
}
/**
* @requires PHP >= 8.1
*
* @dataProvider serializeAllObjectsDataProvider
*/
public function testBackedEnumsAreNotSerializedAsObjects(bool $serializeAllObjects): void
{
$serializer = $this->createSerializer();
if ($serializeAllObjects) {
$serializer->setSerializeAllObjects(true);
}
$input = SerializerTestBackedEnum::CASE_NAME;
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame('Enum Sentry\Tests\Serializer\SerializerTestBackedEnum::CASE_NAME(case_value)', $result);
}
public static function objectsWithIdPropertyDataProvider(): array
{
return [
['bar', 'Object Sentry\Tests\Serializer\SerializerTestObjectWithIdProperty(#bar)'],
[123, 'Object Sentry\Tests\Serializer\SerializerTestObjectWithIdProperty(#123)'],
[[1, 2, 3], 'Object Sentry\Tests\Serializer\SerializerTestObjectWithIdProperty'],
[(object) ['id' => 321], 'Object Sentry\Tests\Serializer\SerializerTestObjectWithIdProperty'],
[null, 'Object Sentry\Tests\Serializer\SerializerTestObjectWithIdProperty'],
];
}
/**
* @dataProvider objectsWithIdPropertyDataProvider
*/
public function testObjectsWithIdPropertyAreStrings($id, string $expectedResult): void
{
$serializer = $this->createSerializer();
$input = new SerializerTestObjectWithIdProperty();
$input->id = $id;
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame($expectedResult, $result);
}
public function testObjectsWithMagicIdPropertyDoesNotInvokeMagicMethods(): void
{
$serializer = $this->createSerializer();
$input = new SerializerTestObjectWithMagicGetAndIssetMethods();
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame('Object Sentry\Tests\Serializer\SerializerTestObjectWithMagicGetAndIssetMethods', $result);
}
public function testObjectsWithSerializerTestObjectWithGetIdMethodAreStrings(): void
{
$serializer = $this->createSerializer();
$input = new SerializerTestObjectWithGetIdMethod();
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame('Object Sentry\Tests\Serializer\SerializerTestObjectWithGetIdMethod(#foobar)', $result);
}
public function testObjectsAreNotStrings(): void
{
$serializer = $this->createSerializer();
$serializer->setSerializeAllObjects(true);
$input = new SerializerTestObject();
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame(['key' => 'value'], $result);
}
/**
* @dataProvider iterableDataProvider
*/
public function testIterablesAreNotConsumed(iterable $iterable, array $input): void
{
$serializer = $this->createSerializer();
$output = [];
foreach ($iterable as $k => $v) {
$output[$k] = $v;
$this->invokeSerialization($serializer, $iterable);
}
$this->assertSame($input, $output);
}
public static function iterableDataProvider(): \Generator
{
yield [
'iterable' => ['value1', 'value2'],
'input' => ['value1', 'value2'],
];
yield [
'iterable' => new \ArrayIterator(['value1', 'value2']),
'input' => ['value1', 'value2'],
];
// Also test with a non-rewindable non-cloneable iterator:
yield [
'iterable' => (static function (): \Generator {
yield 'value1';
yield 'value2';
})(),
'input' => [
'value1',
'value2',
],
];
}
/**
* @dataProvider serializeAllObjectsDataProvider
*/
public function testRecursionMaxDepth(bool $serializeAllObjects): void
{
$serializer = $this->createSerializer();
if ($serializeAllObjects) {
$serializer->setSerializeAllObjects(true);
}
$input = [];
$input[] = &$input;
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame([[['Array of length 1']]], $result);
$result = $this->invokeSerialization($serializer, []);
$this->assertSame([], $result);
$result = $this->invokeSerialization($serializer, [[]]);
$this->assertSame([[]], $result);
$result = $this->invokeSerialization($serializer, [[[]]]);
$this->assertSame([[[]]], $result);
$result = $this->invokeSerialization($serializer, [[[[]]]]);
$this->assertSame([[['Array of length 0']]], $result);
}
public static function dataRecursionInObjectsDataProvider(): \Generator
{
$object = new SerializerTestObject();
$object->key = $object;
yield [
'object' => $object,
'expectedResult' => ['key' => 'Object ' . SerializerTestObject::class],
];
$object = new SerializerTestObject();
$object2 = new SerializerTestObject();
$object2->key = $object;
$object->key = $object2;
yield [
'object' => $object,
'expectedResult' => ['key' => ['key' => 'Object ' . SerializerTestObject::class]],
];
$object = new SerializerTestObject();
$object2 = new SerializerTestObject();
$object2->key = 'foobar';
$object->key = $object2;
yield [
'object' => $object,
'expectedResult' => ['key' => ['key' => 'foobar']],
];
$object3 = new SerializerTestObject();
$object3->key = 'foobar';
$object2 = new SerializerTestObject();
$object2->key = $object3;
$object = new SerializerTestObject();
$object->key = $object2;
yield [
'object' => $object,
'expectedResult' => ['key' => ['key' => ['key' => 'foobar']]],
];
$object4 = new SerializerTestObject();
$object4->key = 'foobar';
$object3 = new SerializerTestObject();
$object3->key = $object4;
$object2 = new SerializerTestObject();
$object2->key = $object3;
$object = new SerializerTestObject();
$object->key = $object2;
yield [
'object' => $object,
'expectedResult' => ['key' => ['key' => ['key' => 'Object ' . SerializerTestObject::class]]],
];
$object3 = new SerializerTestObject();
$object2 = new SerializerTestObject();
$object2->key = $object3;
$object2->keys = 'keys';
$object = new SerializerTestObject();
$object->key = $object2;
$object3->key = $object2;
yield [
'object' => $object,
'expectedResult' => [
'key' => [
'key' => ['key' => 'Object ' . SerializerTestObject::class],
'keys' => 'keys',
],
],
];
}
/**
* @dataProvider dataRecursionInObjectsDataProvider
*/
public function testRecursionInObjects($object, array $expectedResult): void
{
$serializer = $this->createSerializer();
$serializer->setSerializeAllObjects(true);
$result = $this->invokeSerialization($serializer, $object);
$this->assertSame($expectedResult, $result);
$this->assertContains(\gettype($result), ['array', 'string', 'null', 'float', 'integer', 'object']);
}
/**
* @dataProvider recursionMaxDepthForObjectDataProvider
*/
public function testRecursionMaxDepthForObject($value, $expectedResult): void
{
$serializer = $this->createSerializer();
$serializer->setSerializeAllObjects(true);
$result = $this->invokeSerialization($serializer, $value);
$this->assertEquals($expectedResult, $result);
}
public static function recursionMaxDepthForObjectDataProvider(): array
{
return [
[
(object) [
'key' => (object) [
'key' => 12345,
],
],
[
'key' => [
'key' => 12345,
],
],
],
[
(object) [
'key' => (object) [
'key' => (object) [
'key' => 12345,
],
],
],
[
'key' => [
'key' => [
'key' => 12345,
],
],
],
],
[
(object) [
'key' => (object) [
'key' => (object) [
'key' => (object) [
'key' => 12345,
],
],
],
],
[
'key' => [
'key' => [
'key' => 'Object stdClass',
],
],
],
],
];
}
public function testObjectInArray(): void
{
$serializer = $this->createSerializer();
$input = ['foo' => new SerializerTestObject()];
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame(['foo' => 'Object ' . SerializerTestObject::class], $result);
}
public function testObjectInArraySerializeAll(): void
{
$serializer = $this->createSerializer();
$serializer->setSerializeAllObjects(true);
$input = ['foo' => new SerializerTestObject()];
$result = $this->invokeSerialization($serializer, $input);
$this->assertSame(['foo' => ['key' => 'value']], $result);
}
/**
* @dataProvider serializeAllObjectsDataProvider
*/
public function testBrokenEncoding(bool $serializeAllObjects): void
{
$serializer = $this->createSerializer();
if ($serializeAllObjects) {
$serializer->setSerializeAllObjects(true);
}
foreach (['7efbce4384', 'b782b5d8e5', '9dde8d1427', '8fd4c373ca', '9b8e84cb90'] as $key) {
$input = pack('H*', $key);
$result = $this->invokeSerialization($serializer, $input);
$this->assertIsString($result);
if (\function_exists('mb_detect_encoding')) {
$this->assertContains(mb_detect_encoding($result), ['ASCII', 'UTF-8']);
}
}
}
/**
* @dataProvider serializeAllObjectsDataProvider
*/
public function testLongString(bool $serializeAllObjects): void
{
$serializer = $this->createSerializer();
if ($serializeAllObjects) {
$serializer->setSerializeAllObjects(true);
}
foreach ([100, 1000, 1010, 1024, 1050, 1100, 10000] as $length) {
$input = str_repeat('x', $length);
$result = $this->invokeSerialization($serializer, $input);
$this->assertIsString($result);
$this->assertLessThanOrEqual(1024, \strlen($result));
}
}
/**
* @dataProvider serializeAllObjectsDataProvider
*/
public function testSerializeValueResource(bool $serializeAllObjects): void
{
$serializer = $this->createSerializer();
if ($serializeAllObjects) {
$serializer->setSerializeAllObjects(true);
}
$filename = tempnam(sys_get_temp_dir(), 'sentry_test_');
$this->assertNotFalse($filename, 'Temp file creation failed');
$resource = fopen($filename, 'w');
$result = $this->invokeSerialization($serializer, $resource);
$this->assertIsString($result);
$this->assertSame('Resource stream', $result);
}
public function testSetAllObjectSerialize(): void
{
$serializer = $this->createSerializer();
$serializer->setSerializeAllObjects(true);
$this->assertTrue($serializer->getSerializeAllObjects());
$serializer->setSerializeAllObjects(false);
$this->assertFalse($serializer->getSerializeAllObjects());
}
public function serializableCallableProvider(): array
{
$filename = \dirname(__DIR__) . '/resources/callable_without_namespace.inc';
$this->assertFileExists($filename);
$callableWithoutNamespaces = require $filename;
$prettyClosureNames = \PHP_VERSION_ID >= 80400;
return [
[
'callable' => static function (array $param1) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [array param1]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [array param1]',
],
[
'callable' => static function ($param1a) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [mixed|null param1a]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [mixed|null param1a]',
],
[
'callable' => static function (callable $param1c) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [callable param1c]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [callable param1c]',
],
[
'callable' => static function (\stdClass $param1d) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [stdClass param1d]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [stdClass param1d]',
],
[
'callable' => static function (?\stdClass $param1e = null) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [stdClass|null [param1e]]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [stdClass|null [param1e]]',
],
[
'callable' => static function (array &$param1f) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [array ¶m1f]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [array ¶m1f]',
],
[
'callable' => static function (?array &$param1g = null) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [array|null [¶m1g]]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [array|null [¶m1g]]',
],
[
'callable' => [$this, 'serializableCallableProvider'],
'expected' => 'Callable array ' . __CLASS__ . '::serializableCallableProvider []',
],
[
'callable' => [TestCase::class, 'setUpBeforeClass'],
'expected' => 'Callable void PHPUnit\\Framework\\TestCase::setUpBeforeClass []',
],
[
'callable' => [$this, 'setUpBeforeClass'],
'expected' => 'Callable void ' . __CLASS__ . '::setUpBeforeClass []',
],
[
'callable' => [self::class, 'setUpBeforeClass'],
'expected' => 'Callable void ' . __CLASS__ . '::setUpBeforeClass []',
],
[
'callable' => [SerializerTestObject::class, 'testy'],
'expected' => 'Callable void ' . SerializerTestObject::class . '::testy []',
],
[
'callable' => static function (int $param1_70a) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [int param1_70a]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [int param1_70a]',
],
[
'callable' => static function (&$param): int {
return (int) $param;
},
'expected' => $prettyClosureNames
? 'Lambda int {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [mixed|null ¶m]'
: 'Lambda int ' . __NAMESPACE__ . '\\{closure} [mixed|null ¶m]',
],
[
'callable' => static function (int $param): ?int {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda int {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [int param]'
: 'Lambda int ' . __NAMESPACE__ . '\\{closure} [int param]',
],
[
'callable' => static function (?int $param1_70b) {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [int|null param1_70b]'
: 'Lambda ' . __NAMESPACE__ . '\\{closure} [int|null param1_70b]',
],
[
'callable' => static function (?int $param1_70c): void {
throw new \Exception('Don\'t even think about invoke me');
},
'expected' => $prettyClosureNames
? 'Lambda void {closure:' . __CLASS__ . '::' . __FUNCTION__ . '():%d} [int|null param1_70c]'
: 'Lambda void ' . __NAMESPACE__ . '\\{closure} [int|null param1_70c]',
],
[
'callable' => $callableWithoutNamespaces,
'expected' => $prettyClosureNames
? 'Lambda void {closure:%s:%d} [int|null param1_70ns]'
: 'Lambda void {closure} [int|null param1_70ns]',
],
[
// This is (a example of) a PHP provided function that is technically callable but we want to ignore that because it causes more false positives than it helps
'callable' => 'header',
'expected' => 'header',
],
[
'callable' => __METHOD__,
'expected' => __METHOD__,
],
];
}
/**
* @dataProvider serializableCallableProvider
*/
public function testSerializeCallable($callable, string $expected): void
{
$serializer = $this->createSerializer();
$actual = $this->invokeSerialization($serializer, $callable);
$this->assertStringMatchesFormat($expected, $actual);
$actual = $this->invokeSerialization($serializer, [$callable]);
$this->assertStringMatchesFormat($expected, $actual[0]);
}
/**
* @dataProvider serializationForBadStringsDataProvider
*/
public function testSerializationForBadStrings(string $string, string $expected, ?string $mbDetectOrder = null): void
{
$serializer = $this->createSerializer();
if ($mbDetectOrder) {
$serializer->setMbDetectOrder($mbDetectOrder);
}
$this->assertSame($expected, $this->invokeSerialization($serializer, $string));
}
public static function serializationForBadStringsDataProvider(): array
{
$utf8String = 'äöü';
return [
[mb_convert_encoding($utf8String, 'ISO-8859-1', 'UTF-8'), $utf8String, 'ISO-8859-1, ASCII, UTF-8'],
["\xC2\xA2\xC2", "\xC2\xA2\x3F"], // ill-formed 2-byte character U+00A2 (CENT SIGN)
];
}
public function testSerializationOfInvokable(): void
{
$serializer = $this->createSerializer();
$this->assertSame('Callable bool Sentry\Tests\Serializer\Invokable::__invoke []', $this->invokeSerialization($serializer, new Invokable()));
}
protected function invokeSerialization(AbstractSerializer $serializer, $input)
{
if ($serializer instanceof SerializerInterface) {
return $serializer->serialize($input);
}
if ($serializer instanceof RepresentationSerializerInterface) {
return $serializer->representationSerialize($input);
}
throw new \InvalidArgumentException('Unrecognized AbstractSerializer: ' . \get_class($serializer));
}
}
#[\AllowDynamicProperties]
class SerializerTestObject
{
private $foo = 'bar';
public $key = 'value';
public static function testy(): void
{
throw new \Exception('We should not reach this');
}
}
class SerializerTestObjectWithIdProperty extends SerializerTestObject
{
public $id = 'bar';
}
class SerializerTestObjectWithGetIdMethod extends SerializerTestObject
{
private $id = 'foo';
public function getId()
{
return $this->id . 'bar';
}
}
class SerializerTestObjectWithMagicGetAndIssetMethods
{
public function __isset(string $name): bool
{
throw new \RuntimeException('We should not reach this!');
}
/**
* @return mixed
*/
public function __get(string $name)
{
throw new \RuntimeException('We should not reach this!');
}
/**
* @param mixed $value
*/
public function __set(string $name, $value): void
{
throw new \RuntimeException('We should not reach this!');
}
}
class Invokable
{
public function __invoke(): bool
{
return true;
}
}