Rename license file to be in line with what GH expects (#1188)

This commit is contained in:
Martin Rademacher 2022-04-06 15:38:04 +12:00 committed by GitHub
parent 975c598084
commit 25159051d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[![Build Status](https://img.shields.io/github/workflow/status/zircote/swagger-php/build?style=flat-square)](https://github.com/zircote/swagger-php/actions?query=workflow:build)
[![Total Downloads](https://img.shields.io/packagist/dt/zircote/swagger-php.svg?style=flat-square)](https://packagist.org/packages/zircote/swagger-php)
[![License](https://img.shields.io/badge/license-Apache2.0-blue.svg?style=flat-square)](LICENSE-2.0.txt)
[![License](https://img.shields.io/badge/license-Apache2.0-blue.svg?style=flat-square)](LICENSE)
# swagger-php

View File

@ -28,7 +28,7 @@ class AdditionalProperties extends \OpenApi\Annotations\AdditionalProperties
?string $format = null,
?Items $items = null,
?string $collectionFormat = null,
$default = null,
$default = Generator::UNDEFINED,
$maximum = null,
?bool $exclusiveMaximum = null,
$minimum = null,
@ -45,7 +45,7 @@ class AdditionalProperties extends \OpenApi\Annotations\AdditionalProperties
?bool $writeOnly = null,
?Xml $xml = null,
?ExternalDocumentation $externalDocs = null,
$example = null,
$example = Generator::UNDEFINED,
?bool $nullable = null,
?bool $deprecated = null,
?array $allOf = null,
@ -65,7 +65,7 @@ class AdditionalProperties extends \OpenApi\Annotations\AdditionalProperties
'type' => $type ?? Generator::UNDEFINED,
'format' => $format ?? Generator::UNDEFINED,
'collectionFormat' => $collectionFormat ?? Generator::UNDEFINED,
'default' => $default ?? Generator::UNDEFINED,
'default' => $default,
'maximum' => $maximum ?? Generator::UNDEFINED,
'exclusiveMaximum' => $exclusiveMaximum ?? Generator::UNDEFINED,
'minimum' => $minimum ?? Generator::UNDEFINED,
@ -80,7 +80,7 @@ class AdditionalProperties extends \OpenApi\Annotations\AdditionalProperties
'readOnly' => $readOnly ?? Generator::UNDEFINED,
'writeOnly' => $writeOnly ?? Generator::UNDEFINED,
'xml' => $xml ?? Generator::UNDEFINED,
'example' => $example ?? Generator::UNDEFINED,
'example' => $example,
'nullable' => $nullable ?? Generator::UNDEFINED,
'deprecated' => $deprecated ?? Generator::UNDEFINED,
'allOf' => $allOf ?? Generator::UNDEFINED,