Skip to content

Commit

Permalink
cleanup author tags
Browse files Browse the repository at this point in the history
  • Loading branch information
cebe committed Nov 7, 2018
1 parent 67b15eb commit fdacf32
Show file tree
Hide file tree
Showing 29 changed files with 1 addition and 27 deletions.
1 change: 1 addition & 0 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
'general_phpdoc_annotation_remove' => ['annotations' => ['author']],
'header_comment' => [
'comment_type' => 'PHPDoc',
'header' => <<<COMMENT
Expand Down
1 change: 0 additions & 1 deletion src/Reader.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
/**
*
*
* @author Carsten Brandt <[email protected]>
*/
class Reader
{
Expand Down
1 change: 0 additions & 1 deletion src/SpecBaseObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*
* Implements property management and validation basics.
*
* @author Carsten Brandt <[email protected]>
*/
abstract class SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/exceptions/ReadonlyPropertyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
/**
*
*
* @author Carsten Brandt <[email protected]>
*/
class ReadonlyPropertyException extends \Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/exceptions/UnknownPropertyException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
/**
*
*
* @author Carsten Brandt <[email protected]>
*/
class UnknownPropertyException extends \Exception
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Callback.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#callbackObject
*
* @author Carsten Brandt <[email protected]>
*/
class Callback
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Components.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
* @property-read Callback[]|Reference[] $callbacks
*
*
* @author Carsten Brandt <[email protected]>
*/
class Components extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* @property-read string $url
* @property-read string $email
*
* @author Carsten Brandt <[email protected]>
*/
class Contact extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Discriminator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @property-read string $propertyName
* @property-read string[] $mapping
*
* @author Carsten Brandt <[email protected]>
*/
class Discriminator extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Example.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#exampleObject
*
* @author Carsten Brandt <[email protected]>
*/
class Example
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/ExternalDocumentation.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @property-read string $description
* @property-read string $url
*
* @author Carsten Brandt <[email protected]>
*/
class ExternalDocumentation extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#headerObject
*
* @author Carsten Brandt <[email protected]>
*/
class Header
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Info.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
* @property-read License|null $license
* @property-read string $version
*
* @author Carsten Brandt <[email protected]>
*/
class Info extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/License.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @property-read string $name
* @property-read string $url
*
* @author Carsten Brandt <[email protected]>
*/
class License extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Link.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
* @property-read string $description
* @property-read Server $server
*
* @author Carsten Brandt <[email protected]>
*/
class Link extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/OpenApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
* @property-read Tag[] $tags
* @property-read ExternalDocumentation|null $externalDocs
*
* @author Carsten Brandt <[email protected]>
*/
class OpenApi extends SpecBaseObject
{
Expand Down
Empty file removed src/spec/Operation.php
Empty file.
1 change: 0 additions & 1 deletion src/spec/Parameter.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#parameterObject
*
* @author Carsten Brandt <[email protected]>
*/
class Parameter
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/PathItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
* @property-read Server $servers
* @property-read Parameter[]|Reference[] $parameters
*
* @author Carsten Brandt <[email protected]>
*/
class PathItem extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Paths.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#pathsObject
*
* @author Carsten Brandt <[email protected]>
*/
class Paths
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/RequestBody.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* @property-read MediaType[] $content
* @property-read string $required
*
* @author Carsten Brandt <[email protected]>
*
* @TODO: Unsure how to define the content attribtue defintion and validation defintion.:
* > REQUIRED. The content of the request body. The key is a media type or media type range and the value describes it.
Expand Down
1 change: 0 additions & 1 deletion src/spec/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#responseObject
*
* @author Carsten Brandt <[email protected]>
*/
class Response
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
* @property-read mixed $example
* @property-read bool $deprecated
*
* @author Carsten Brandt <[email protected]>
*/
class Schema extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/SecurityRequirement.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#securityRequirementObject
*
* @author Carsten Brandt <[email protected]>
*/
class SecurityRequirement
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/SecurityScheme.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#securitySchemeObject
*
* @author Carsten Brandt <[email protected]>
*/
class SecurityScheme
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* @property-read string $description
* @property-read ServerVariable[] $variables
*
* @author Carsten Brandt <[email protected]>
*/
class Server extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/ServerVariable.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* @property-read string $default
* @property-read string $description
*
* @author Carsten Brandt <[email protected]>
*/
class ServerVariable extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* @property-read string $description
* @property-read ExternalDocumentation $externalDocs
*
* @author Carsten Brandt <[email protected]>
*/
class Tag extends SpecBaseObject
{
Expand Down
1 change: 0 additions & 1 deletion src/spec/Xml.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
*
* @link https://github.com/OAI/OpenAPI-Specification/blob/3.0.2/versions/3.0.2.md#xmlObject
*
* @author Carsten Brandt <[email protected]>
*/
class Xml extends SpecBaseObject
{
Expand Down

0 comments on commit fdacf32

Please sign in to comment.