Commit 88dfdfb
committed
Replace Attributes::$visited array with WeakMap
The circular-reference guard keyed visited objects by spl_object_id(), which is
recycled once an object is garbage-collected. On a reused validator instance
this caused two problems: unbounded growth of the visited map across calls, and
false circular-reference failures when a fresh object inherited a freed ID.
WeakMap is keyed by object identity, so distinct objects can never collide, and
entries are reclaimed automatically when the key object is garbage-collected,
no manual reset is required. Since WeakMap is not serializable, __sleep excludes
the field and __wakeup reinitializes it, which also avoids carrying stale IDs
across unserialize.1 parent f2ab556 commit 88dfdfb
1 file changed
Lines changed: 16 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
32 | | - | |
33 | 31 | | |
34 | 32 | | |
35 | 33 | | |
| |||
41 | 39 | | |
42 | 40 | | |
43 | 41 | | |
44 | | - | |
45 | | - | |
| 42 | + | |
| 43 | + | |
46 | 44 | | |
47 | 45 | | |
48 | 46 | | |
| |||
53 | 51 | | |
54 | 52 | | |
55 | 53 | | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
56 | 66 | | |
57 | 67 | | |
58 | 68 | | |
| |||
63 | 73 | | |
64 | 74 | | |
65 | 75 | | |
66 | | - | |
67 | | - | |
| 76 | + | |
68 | 77 | | |
69 | 78 | | |
70 | 79 | | |
71 | | - | |
| 80 | + | |
72 | 81 | | |
73 | 82 | | |
74 | 83 | | |
| |||
0 commit comments