diff --git a/src/Php/ClassDef.php b/src/Php/ClassDef.php new file mode 100644 index 00000000..adcd3f1e --- /dev/null +++ b/src/Php/ClassDef.php @@ -0,0 +1,14 @@ + + */ + public array $properties; + public array $constants; +} \ No newline at end of file diff --git a/src/Php/ConstDef.php b/src/Php/ConstDef.php new file mode 100644 index 00000000..a634dc9f --- /dev/null +++ b/src/Php/ConstDef.php @@ -0,0 +1,19 @@ +name = $name; + $this->type = $type; + $this->flags = $flags; + $this->value = $value; + } +} \ No newline at end of file diff --git a/src/Php/PropertyDef.php b/src/Php/PropertyDef.php new file mode 100644 index 00000000..1df41a5b --- /dev/null +++ b/src/Php/PropertyDef.php @@ -0,0 +1,19 @@ +flags = $flags; + $this->name = $name; + $this->type = $type; + $this->default = $default; + } +} \ No newline at end of file