Closed superstas closed 4 years ago
Hi there!
I've fixed an error message about required property. 1) There is a data structure:
message Person { required uint32 person_id = 1; }
2) Example of using:
<?php require "autoload.php"; $person = new \Person(); var_dump($person->serializeToString());
There was error: "the class does not have required property person_id" , but he does.
person_id
Hi there!
I've fixed an error message about required property. 1) There is a data structure:
2) Example of using:
There was error: "the class does not have required property
person_id
" , but he does.