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
With followed docblock
/** * Login user * * Login user with a `username` and `password` * * @Post("/auth/login") */ public function login(Request $request)
there is exception in api:doc command
api:doc
InvalidArgumentException : Expected a string. Got: boolean at vendor/webmozart/assert/src/Assert.php:1696 1692| * @param string $message 1693| */ 1694| protected static function reportInvalidArgument($message) 1695| { > 1696| throw new InvalidArgumentException($message); 1697| } 1698| 1699| private function __construct() 1700| { Exception trace: 1 Webmozart\Assert\Assert::reportInvalidArgument("Expected a string. Got: boolean") vendor/webmozart/assert/src/Assert.php:206 2 Webmozart\Assert\Assert::string("") vendor/webmozart/assert/src/Assert.php:219 3 Webmozart\Assert\Assert::stringNotEmpty() vendor/phpdocumentor/reflection-docblock/src/DocBlockFactory.php:84 4 phpDocumentor\Reflection\DocBlockFactory::create() vendor/dingo/blueprint/src/RestResource.php:144 5 Dingo\Blueprint\RestResource::getDescription() vendor/dingo/blueprint/src/Blueprint.php:148 ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Actual Behaviour
With followed docblock
there is exception in
api:doc
commandThe text was updated successfully, but these errors were encountered: