mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
f712b789ca
* fix typo * php-cs traits * CS fixer pass * Password protect User routes * Implement checks to prevent editing a deleted record * Clean up payment flows * Fixes for tests
27 lines
785 B
PHP
27 lines
785 B
PHP
<?php
|
|
/**
|
|
* @OA\OpenApi(
|
|
* @OA\Info(
|
|
* version="1.0.30",
|
|
* title="Invoice Ninja",
|
|
* description="Invoice Ninja. Open Source Invoicing lives here. ",
|
|
* termsOfService="http://swagger.io/terms/",
|
|
* @OA\Contact(
|
|
* email="contact@invoiceninja.com"
|
|
* ),
|
|
* @OA\License(
|
|
* name="Attribution Assurance License",
|
|
* url="https://opensource.org/licenses/AAL"
|
|
* )
|
|
* ),
|
|
* @OA\Server(
|
|
* description="InvoiceNinja host",
|
|
* url="https://virtserver.swaggerhub.com/InvoiceNinja/invoices/1.0.30"
|
|
* ),
|
|
* @OA\ExternalDocumentation(
|
|
* description="http://docs.invoiceninja.com",
|
|
* url="http://docs.invoiceninja.com"
|
|
* )
|
|
* )
|
|
*/
|