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 fee0590 commit 0ab738cCopy full SHA for 0ab738c
src/Processors/ObjectProcessor.php
@@ -135,6 +135,9 @@ private function getProperties(
135
$properties = [];
136
do {
137
foreach ($reflection->getProperties() as $property) {
138
+ if ($property->isStatic()) {
139
+ continue;
140
+ }
141
$isUnset = false;
142
143
try {
tests/src/BaseClass.php
@@ -18,6 +18,10 @@
18
19
abstract class BaseClass
20
{
21
+ public const CONSTANT = 'constant';
22
+
23
+ public static string $static = 'static';
24
25
public int $code = 101;
26
27
public object $public;
0 commit comments