Skip to content

Commit fdacf32

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

29 files changed

Lines changed: 1 addition & 27 deletions

.php_cs.dist

Lines changed: 1 addition & 0 deletions
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

src/Reader.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
/**
1414
*
1515
*
16-
* @author Carsten Brandt <mail@cebe.cc>
1716
*/
1817
class Reader
1918
{

src/SpecBaseObject.php

Lines changed: 0 additions & 1 deletion
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 <mail@cebe.cc>
2019
*/
2120
abstract class SpecBaseObject
2221
{

src/exceptions/ReadonlyPropertyException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
/**
1111
*
1212
*
13-
* @author Carsten Brandt <mail@cebe.cc>
1413
*/
1514
class ReadonlyPropertyException extends \Exception
1615
{

src/exceptions/UnknownPropertyException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
/**
1111
*
1212
*
13-
* @author Carsten Brandt <mail@cebe.cc>
1413
*/
1514
class UnknownPropertyException extends \Exception
1615
{

src/spec/Callback.php

Lines changed: 0 additions & 1 deletion
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 <mail@cebe.cc>
1817
*/
1918
class Callback
2019
{

src/spec/Components.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* @property-read Callback[]|Reference[] $callbacks
2929
*
3030
*
31-
* @author Carsten Brandt <mail@cebe.cc>
3231
*/
3332
class Components extends SpecBaseObject
3433
{

src/spec/Contact.php

Lines changed: 0 additions & 1 deletion
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 <mail@cebe.cc>
2221
*/
2322
class Contact extends SpecBaseObject
2423
{

src/spec/Discriminator.php

Lines changed: 0 additions & 1 deletion
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 <mail@cebe.cc>
2120
*/
2221
class Discriminator extends SpecBaseObject
2322
{

src/spec/Example.php

Lines changed: 0 additions & 1 deletion
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 <mail@cebe.cc>
1817
*/
1918
class Example
2019
{

0 commit comments

Comments
 (0)