Skip to content

Commit

Permalink
Reduce public API surface
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 22, 2023
1 parent 21c0c55 commit d77daa2
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Parser.php
Expand Up @@ -14,6 +14,9 @@
use function str_getcsv;
use Generator;

/**
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
final class Parser
{
/**
Expand Down
2 changes: 2 additions & 0 deletions src/schema/ColumnDefinition.php
Expand Up @@ -11,6 +11,8 @@

/**
* @psalm-immutable
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
final class ColumnDefinition
{
Expand Down
2 changes: 2 additions & 0 deletions src/schema/Schema.php
Expand Up @@ -11,6 +11,8 @@

/**
* @psalm-immutable
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
final class Schema
{
Expand Down
2 changes: 2 additions & 0 deletions src/schema/type/BooleanType.php
Expand Up @@ -11,6 +11,8 @@

/**
* @psalm-immutable
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
final class BooleanType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/schema/type/FloatType.php
Expand Up @@ -11,6 +11,8 @@

/**
* @psalm-immutable
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
final class FloatType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/schema/type/IntegerType.php
Expand Up @@ -11,6 +11,8 @@

/**
* @psalm-immutable
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
final class IntegerType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/schema/type/StringType.php
Expand Up @@ -11,6 +11,8 @@

/**
* @psalm-immutable
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
final class StringType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/schema/type/Type.php
Expand Up @@ -11,6 +11,8 @@

/**
* @psalm-immutable
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library
*/
abstract class Type
{
Expand Down

0 comments on commit d77daa2

Please sign in to comment.