Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP update Stan to lvl6 #1

Open
wants to merge 20 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: extra errors on stan and psalm, fix tests
Marko Plesa committed Oct 20, 2023
commit 06fe6108f8fc2bc4176d82d75edbf40ce623e131

This file was deleted.

Original file line number Diff line number Diff line change
@@ -7,12 +7,15 @@
use Undabot\JsonApi\Definition\Model\Resource\Relationship\RelationshipCollectionInterface;
use Undabot\JsonApi\Implementation\Encoding\Exception\JsonApiEncodingException;

/** @psalm-suppress PossiblyUnusedMethod */
interface PhpArrayToRelationshipCollectionEncoderInterface
{
/**
* @param array<string,array<string,mixed>> $relationships
*
* @throws JsonApiEncodingException
*
* @psalm-suppress PossiblyUnusedMethod
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Used inside tests?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even though it's used, Psalm recognizes it as unused?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I removed the annotation because it's also used inside PhpArrayToRelationshipCollectionEncoder. But yes, if it's only used inside some test we need annotation.

*/
public function encode(array $relationships): RelationshipCollectionInterface;
}
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@

namespace Undabot\JsonApi\Definition\Exception\Request;

/** @psalm-suppress UnusedClass */
class UnsupportedFilterAttributeGivenException extends RequestException
{
/**
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@

namespace Undabot\JsonApi\Definition\Exception\Request;

/** @psalm-suppress UnusedClass */
class UnsupportedIncludeValuesGivenException extends RequestException
{
/**
Original file line number Diff line number Diff line change
@@ -4,4 +4,5 @@

namespace Undabot\JsonApi\Definition\Exception\Request;

/** @psalm-suppress UnusedClass */
class UnsupportedPaginationRequestedException extends RequestException {}
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@

namespace Undabot\JsonApi\Definition\Exception\Request;

/** @psalm-suppress UnusedClass */
class UnsupportedSparseFieldsetRequestedException extends RequestException
{
/**
12 changes: 6 additions & 6 deletions src/Implementation/Factory/PaginationFactory.php
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ public function fromArray(array $paginationParams): PaginationInterface
}

/**
* @param array<string, int> $paginationParams
* @param array<string, int|string> $paginationParams
*
* @throws AssertionFailedException
*/
@@ -67,13 +67,13 @@ private function makePageBasedPagination(array $paginationParams): PageBasedPagi
}

return new PageBasedPagination(
$paginationParams[PageBasedPagination::PARAM_PAGE_NUMBER],
$paginationParams[PageBasedPagination::PARAM_PAGE_SIZE]
(int) $paginationParams[PageBasedPagination::PARAM_PAGE_NUMBER],
(int) $paginationParams[PageBasedPagination::PARAM_PAGE_SIZE]
);
}

/**
* @param array<string, int> $paginationParams
* @param array<string, int|string> $paginationParams
*
* @throws AssertionFailedException
*/
@@ -109,8 +109,8 @@ private function makeOffsetBasedPagination(array $paginationParams): OffsetBased
);

return new OffsetBasedPagination(
$paginationParams[OffsetBasedPagination::PARAM_PAGE_OFFSET],
$paginationParams[OffsetBasedPagination::PARAM_PAGE_LIMIT]
(int) $paginationParams[OffsetBasedPagination::PARAM_PAGE_OFFSET],
(int) $paginationParams[OffsetBasedPagination::PARAM_PAGE_LIMIT]
);
}
}
6 changes: 2 additions & 4 deletions src/Implementation/Model/Document/DocumentData.php
Original file line number Diff line number Diff line change
@@ -9,15 +9,13 @@
use Undabot\JsonApi\Definition\Model\Resource\ResourceIdentifierCollectionInterface;
use Undabot\JsonApi\Definition\Model\Resource\ResourceIdentifierInterface;
use Undabot\JsonApi\Definition\Model\Resource\ResourceInterface;
use Undabot\JsonApi\Implementation\Model\Resource\ResourceCollection;
use Undabot\JsonApi\Implementation\Model\Resource\ResourceIdentifierCollection;

/** @psalm-suppress UnusedClass */
class DocumentData implements DocumentDataInterface
{
private null|ResourceCollection|ResourceIdentifierCollection|ResourceIdentifierInterface|ResourceInterface $data;
private mixed $data;

public function __construct(null|ResourceCollection|ResourceIdentifierCollection|ResourceIdentifierInterface|ResourceInterface $data)
public function __construct(mixed $data)
{
$this->makeSureDataIsValid($data);
$this->data = $data;
2 changes: 2 additions & 0 deletions src/Implementation/Model/Resource/Attribute/Attribute.php
Original file line number Diff line number Diff line change
@@ -16,6 +16,8 @@ class Attribute implements AttributeInterface

/**
* @param mixed $value
*
* @psalm-suppress PossiblyUnusedMethod
*/
public function __construct(string $name, $value)
{
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@
use Undabot\JsonApi\Definition\Model\Resource\Attribute\AttributeCollectionInterface;
use Undabot\JsonApi\Definition\Model\Resource\Attribute\AttributeInterface;

/** @psalm-suppress UnusedClass */
class AttributeCollection implements AttributeCollectionInterface
{
/** @var AttributeInterface[] */
1 change: 1 addition & 0 deletions src/Implementation/Model/Resource/Resource.php
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@
use Undabot\JsonApi\Definition\Model\Resource\Relationship\RelationshipCollectionInterface;
use Undabot\JsonApi\Definition\Model\Resource\ResourceInterface;

/** @psalm-suppress UnusedClass */
class Resource implements ResourceInterface
{
/** @var string */
9 changes: 6 additions & 3 deletions src/Implementation/Model/Resource/ResourceCollection.php
Original file line number Diff line number Diff line change
@@ -6,17 +6,20 @@

use Assert\Assertion;
use Assert\AssertionFailedException;
use InvalidArgumentException;
use Undabot\JsonApi\Definition\Model\Resource\ResourceCollectionInterface;
use Undabot\JsonApi\Definition\Model\Resource\ResourceInterface;

/** @psalm-suppress UnusedClass */
final class ResourceCollection implements ResourceCollectionInterface
{
/** @var ResourceInterface[] */
private $resources;
/**
* @var array<ResourceInterface>
*/
private array $resources;

/** @param ResourceInterface[] $resources */
/** @psalm-suppress PossiblyUnusedMethod */
/** @phpstan-ignore-next-line */
public function __construct(array $resources)
{
try {
11 changes: 7 additions & 4 deletions src/Util/Exception/ValidationException.php
Original file line number Diff line number Diff line change
@@ -12,15 +12,18 @@ class ValidationException extends \Exception
/** @psalm-suppress UnusedProperty */
private mixed $value;

/** @var array<int,mixed> */
/** @psalm-suppress UnusedProperty */
/**
* @var array<int, mixed>
*
* @psalm-suppress UnusedProperty
*/
/** @phpstan-ignore-next-line */
private array $constraints;

/**
* ValidationException constructor.
*
* @param array<int,mixed> $constraints
*
* @psalm-suppress UnusedProperty
* @psalm-suppress PossiblyUnusedMethod
*/
public function __construct(
2 changes: 2 additions & 0 deletions src/Util/ValidResourceAssertion.php
Original file line number Diff line number Diff line change
@@ -8,6 +8,8 @@

/**
* @internal
*
* @psalm-suppress UnusedClass
*/
final class ValidResourceAssertion
{
Original file line number Diff line number Diff line change
@@ -52,11 +52,11 @@ public function testItCanBeConstructed(): void
public function testEncoderSuccessfullyEncodesPrimitiveValues(): void
{
$error = $this->createMock(ErrorInterface::class);
$error->expects(self::exactly(2))->method('getId')->willReturn('id');
$error->expects(self::exactly(2))->method('getStatus')->willReturn('status 1');
$error->expects(self::exactly(2))->method('getCode')->willReturn('code 1');
$error->expects(self::exactly(2))->method('getTitle')->willReturn('title 1');
$error->expects(self::exactly(2))->method('getDetail')->willReturn('detail 1');
$error->expects(self::exactly(1))->method('getId')->willReturn('id');
$error->expects(self::exactly(1))->method('getStatus')->willReturn('status 1');
$error->expects(self::exactly(1))->method('getCode')->willReturn('code 1');
$error->expects(self::exactly(1))->method('getTitle')->willReturn('title 1');
$error->expects(self::exactly(1))->method('getDetail')->willReturn('detail 1');

$encoded = $this->errorEncoder->encode($error);
self::assertIsArray($encoded);
@@ -73,13 +73,13 @@ public function testErrorEncoderWillCallSpecificObjectEncoders(): void
$error = $this->createMock(ErrorInterface::class);

$link = $this->createMock(LinkInterface::class);
$error->expects(self::exactly(2))->method('getAboutLink')->willReturn($link);
$error->expects(self::exactly(1))->method('getAboutLink')->willReturn($link);

$source = $this->createMock(SourceInterface::class);
$error->expects(self::exactly(2))->method('getSource')->willReturn($source);
$error->expects(self::exactly(1))->method('getSource')->willReturn($source);

$meta = $this->createMock(MetaInterface::class);
$error->expects(self::exactly(2))->method('getMeta')->willReturn($meta);
$error->expects(self::exactly(1))->method('getMeta')->willReturn($meta);

$encoded = $this->errorEncoder->encode($error);
self::assertIsArray($encoded);