Passed
Push — main ( c52845...19c837 )
by Tan
02:41
created

AppInfo::index()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 0
c 1
b 0
f 1
dl 0
loc 2
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace CSlant\Blog\Api\OpenApi;
4
5
/**
6
 * @OA\Info(
7
 *     description="The API Documentation for CSlant Blog - Build by cslant.com",
8
 *     version="1.0.0",
9
 *     title="The API Documentation",
10
 *     termsOfService="https://swagger.io/terms/",
11
 *     @OA\Contact(
12
 *         email="[email protected]",
13
 *         name="CSlant",
14
 *         url="https://cslant.com"
15
 *     ),
16
 *     @OA\License(
17
 *         name="Apache 2.0",
18
 *         url="https://www.apache.org/licenses/LICENSE-2.0.html"
19
 *     )
20
 * )
21
 * @OA\Schemes(
22
 *     scheme="http",
23
 *     scheme="https",
24
 * )
25
 * @OA\ExternalDocumentation(
26
 *     description="Find out more about Swagger",
27
 *     url="https://swagger.io"
28
 * )
29
 * @OA\PathItem(
30
 *     path="/",
31
 * )
32
 *
33
 * @OA\Server(
34
 *     url="/cs-api",
35
 *     description="The API Base Path"
36
 * )
37
 *
38
 * @OA\SecurityScheme(
39
 *     type="http",
40
 *     description="Authentication by bearer token",
41
 *     name="bearerAuth",
42
 *     in="header",
43
 *     scheme="bearer",
44
 *     securityScheme="sanctum"
45
 * )
46
 */
47
class AppInfo
48
{
49
}
50