-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Closed
Labels
Help wantedIssues and PRs which are looking for volunteers to complete them.Issues and PRs which are looking for volunteers to complete them.VarDumper
Description
Description
TIL var_dump()
displays more information than the VarDumper component about uninitialized properties.
object(Subscription)#2 (1) {
["id"]=>
string(3) "123"
["canceled"]=>
uninitialized(bool)
}
But the var dumper don't:
^ Subscription^ {#22
+id: "123"
}
It would be useful to add this information in the dump, isn't?
Example Proposal
^ Subscription^ {#22
+id: "123"
+canceled: ⚠ uninitialized(bool)
}
Korbeil, damienalexandre, OskarStark, JulienRAVIA, joschi127 and 4 more
Metadata
Metadata
Assignees
Labels
Help wantedIssues and PRs which are looking for volunteers to complete them.Issues and PRs which are looking for volunteers to complete them.VarDumper