We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Normally you would of course use fromStream but in case you want to use fromArray you just won't come far.
fromStream
fromArray
Let's say you generate files for https://github.com/google/openrtb/blob/master/openrtb-core/src/main/protobuf/openrtb.proto. For example BidResponse::fromArray($array); will crash since $message->addSeatbid($item); expects a SeatBid object but the method gives an array.
BidResponse::fromArray($array);
$message->addSeatbid($item);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Normally you would of course use
fromStream
but in case you want to usefromArray
you just won't come far.Let's say you generate files for https://github.com/google/openrtb/blob/master/openrtb-core/src/main/protobuf/openrtb.proto. For example
BidResponse::fromArray($array);
will crash since$message->addSeatbid($item);
expects a SeatBid object but the method gives an array.The text was updated successfully, but these errors were encountered: