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
*/
kiota generate -d https://raw.githubusercontent.com/APIs-guru/openapi-directory/gh-pages/v2/specs/github.com/api.github.com/1.1.4/openapi.json -l PHP
and attempting to build the client leads to
------ ------------------------------------------------------------ Line client/Models/CodeScanningAlertDismissedReason.php ------ ------------------------------------------------------------ 9 Syntax error, unexpected T_STRING, expecting ';' on line 9 ------ ------------------------------------------------------------ ------ ----------------------------------------------------- Line client/Models/DeploymentBranchPolicyNamePattern.php ------ ----------------------------------------------------- 18 Syntax error, unexpected '*' on line 18 83 Syntax error, unexpected '*' on line 83 ------ -----------------------------------------------------
This is caused by the presence of */ in the doc comment. Removing the value fixes the problem. It should be escaped.
The text was updated successfully, but these errors were encountered:
timayabi2020
No branches or pull requests
and attempting to build the client leads to
This is caused by the presence of
*/
in the doc comment. Removing the value fixes the problem. It should be escaped.The text was updated successfully, but these errors were encountered: