From 37f43105172bdfeaad43ca7de7bbce38fea9e58b Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 24 Apr 2023 12:06:49 +0200 Subject: [PATCH] add namespace value descriptor --- src/ValueDescriptor.php | 50 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/ValueDescriptor.php diff --git a/src/ValueDescriptor.php b/src/ValueDescriptor.php new file mode 100644 index 0000000..d6a9dbc --- /dev/null +++ b/src/ValueDescriptor.php @@ -0,0 +1,50 @@ + The properties + */ + public function dump(): array + { + return [ + 'ns' => $this->ns, + 'id' => $this->id, + 'count' => $this->count, + ]; + } +}