Skip to content

Commit fdacf32

Browse files
committed
cleanup author tags
1 parent 67b15eb commit fdacf32

29 files changed

+1
-27
lines changed

Diff for: .php_cs.dist

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ return PhpCsFixer\Config::create()
44
->setRules([
55
'@PSR2' => true,
66
'array_syntax' => ['syntax' => 'short'],
7+
'general_phpdoc_annotation_remove' => ['annotations' => ['author']],
78
'header_comment' => [
89
'comment_type' => 'PHPDoc',
910
'header' => <<<COMMENT

Diff for: src/Reader.php

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
/**
1414
*
1515
*
16-
* @author Carsten Brandt <[email protected]>
1716
*/
1817
class Reader
1918
{

Diff for: src/SpecBaseObject.php

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*
1717
* Implements property management and validation basics.
1818
*
19-
* @author Carsten Brandt <[email protected]>
2019
*/
2120
abstract class SpecBaseObject
2221
{

Diff for: src/exceptions/ReadonlyPropertyException.php

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
/**
1111
*
1212
*
13-
* @author Carsten Brandt <[email protected]>
1413
*/
1514
class ReadonlyPropertyException extends \Exception
1615
{

Diff for: src/exceptions/UnknownPropertyException.php

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
/**
1111
*
1212
*
13-
* @author Carsten Brandt <[email protected]>
1413
*/
1514
class UnknownPropertyException extends \Exception
1615
{

Diff for: src/spec/Callback.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*
1515
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#callbackObject
1616
*
17-
* @author Carsten Brandt <[email protected]>
1817
*/
1918
class Callback
2019
{

Diff for: src/spec/Components.php

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* @property-read Callback[]|Reference[] $callbacks
2929
*
3030
*
31-
* @author Carsten Brandt <[email protected]>
3231
*/
3332
class Components extends SpecBaseObject
3433
{

Diff for: src/spec/Contact.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* @property-read string $url
1919
* @property-read string $email
2020
*
21-
* @author Carsten Brandt <[email protected]>
2221
*/
2322
class Contact extends SpecBaseObject
2423
{

Diff for: src/spec/Discriminator.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* @property-read string $propertyName
1818
* @property-read string[] $mapping
1919
*
20-
* @author Carsten Brandt <[email protected]>
2120
*/
2221
class Discriminator extends SpecBaseObject
2322
{

Diff for: src/spec/Example.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*
1515
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#exampleObject
1616
*
17-
* @author Carsten Brandt <[email protected]>
1817
*/
1918
class Example
2019
{

Diff for: src/spec/ExternalDocumentation.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* @property-read string $description
1818
* @property-read string $url
1919
*
20-
* @author Carsten Brandt <[email protected]>
2120
*/
2221
class ExternalDocumentation extends SpecBaseObject
2322
{

Diff for: src/spec/Header.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
*
1919
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#headerObject
2020
*
21-
* @author Carsten Brandt <[email protected]>
2221
*/
2322
class Header
2423
{

Diff for: src/spec/Info.php

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
* @property-read License|null $license
2424
* @property-read string $version
2525
*
26-
* @author Carsten Brandt <[email protected]>
2726
*/
2827
class Info extends SpecBaseObject
2928
{

Diff for: src/spec/License.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
* @property-read string $name
1818
* @property-read string $url
1919
*
20-
* @author Carsten Brandt <[email protected]>
2120
*/
2221
class License extends SpecBaseObject
2322
{

Diff for: src/spec/Link.php

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* @property-read string $description
2222
* @property-read Server $server
2323
*
24-
* @author Carsten Brandt <[email protected]>
2524
*/
2625
class Link extends SpecBaseObject
2726
{

Diff for: src/spec/OpenApi.php

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
* @property-read Tag[] $tags
2424
* @property-read ExternalDocumentation|null $externalDocs
2525
*
26-
* @author Carsten Brandt <[email protected]>
2726
*/
2827
class OpenApi extends SpecBaseObject
2928
{

Diff for: src/spec/Operation.php

Whitespace-only changes.

Diff for: src/spec/Parameter.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*
1515
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#parameterObject
1616
*
17-
* @author Carsten Brandt <[email protected]>
1817
*/
1918
class Parameter
2019
{

Diff for: src/spec/PathItem.php

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* @property-read Server $servers
3030
* @property-read Parameter[]|Reference[] $parameters
3131
*
32-
* @author Carsten Brandt <[email protected]>
3332
*/
3433
class PathItem extends SpecBaseObject
3534
{

Diff for: src/spec/Paths.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*
1818
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#pathsObject
1919
*
20-
* @author Carsten Brandt <[email protected]>
2120
*/
2221
class Paths
2322
{

Diff for: src/spec/RequestBody.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* @property-read MediaType[] $content
1919
* @property-read string $required
2020
*
21-
* @author Carsten Brandt <[email protected]>
2221
*
2322
* @TODO: Unsure how to define the content attribtue defintion and validation defintion.:
2423
* > REQUIRED. The content of the request body. The key is a media type or media type range and the value describes it.

Diff for: src/spec/Response.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*
1515
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#responseObject
1616
*
17-
* @author Carsten Brandt <[email protected]>
1817
*/
1918
class Response
2019
{

Diff for: src/spec/Schema.php

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
* @property-read mixed $example
6060
* @property-read bool $deprecated
6161
*
62-
* @author Carsten Brandt <[email protected]>
6362
*/
6463
class Schema extends SpecBaseObject
6564
{

Diff for: src/spec/SecurityRequirement.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*
1515
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#securityRequirementObject
1616
*
17-
* @author Carsten Brandt <[email protected]>
1817
*/
1918
class SecurityRequirement
2019
{

Diff for: src/spec/SecurityScheme.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*
1515
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#securitySchemeObject
1616
*
17-
* @author Carsten Brandt <[email protected]>
1817
*/
1918
class SecurityScheme
2019
{

Diff for: src/spec/Server.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* @property-read string $description
1919
* @property-read ServerVariable[] $variables
2020
*
21-
* @author Carsten Brandt <[email protected]>
2221
*/
2322
class Server extends SpecBaseObject
2423
{

Diff for: src/spec/ServerVariable.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* @property-read string $default
1919
* @property-read string $description
2020
*
21-
* @author Carsten Brandt <[email protected]>
2221
*/
2322
class ServerVariable extends SpecBaseObject
2423
{

Diff for: src/spec/Tag.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* @property-read string $description
1919
* @property-read ExternalDocumentation $externalDocs
2020
*
21-
* @author Carsten Brandt <[email protected]>
2221
*/
2322
class Tag extends SpecBaseObject
2423
{

Diff for: src/spec/Xml.php

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
*
1515
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#xmlObject
1616
*
17-
* @author Carsten Brandt <[email protected]>
1817
*/
1918
class Xml extends SpecBaseObject
2019
{

0 commit comments

Comments
 (0)