for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CSlant\Blog\Api\OpenApi;
class AppInfo
{
/**
* @OA\Info(
* description="The API Documentation for CSlant Blog - Build by cslant.com",
* version="1.0.0",
* title="The API Documentation",
* termsOfService="https://swagger.io/terms/",
* @OA\Contact(
* email="[email protected]",
* name="CSlant",
* url="https://cslant.com"
* ),
* @OA\License(
* name="Apache 2.0",
* url="https://www.apache.org/licenses/LICENSE-2.0.html"
* )
* @OA\Schemes(
* scheme="http",
* scheme="https",
* @OA\ExternalDocumentation(
* description="Find out more about Swagger",
* url="https://swagger.io"
* @OA\PathItem(
* path="/",
*
* @OA\Server(
* url="/cs-api",
* description="The API Base Path"
* @OA\SecurityScheme(
* type="http",
* description="Authentication by bearer token",
* name="bearerAuth",
* in="header",
* scheme="bearer",
* securityScheme="sanctum"
*/
public function index(): void
}