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

TASK: Fix mini cosmetic Todos #5178

Merged
merged 6 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ public function isEmpty(): bool
return count($this->ids) === 0;
}

/**
* @return \Traversable<string,NodeAggregateId>
*/
public function getIterator(): \Traversable
{
yield from $this->ids;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ public function remove(NodeRelationAnchorPoint $nodeRelationAnchorPoint): self
return new self(...$childNodeAnchors);
}

/**
* @return \Traversable<NodeRelationAnchorPoint>
*/
public function getIterator(): \Traversable
{
yield from $this->nodeRelationAnchorPoints;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ public static function createEmpty(): self
return new self([]);
}

/**
* @return \Traversable<string,ContentDimensionConstraints>
*/
public function getIterator(): \Traversable
{
yield from $this->constraints;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ public static function createEmpty(): self
return new self();
}

/**
* @return \Traversable<ContentDimensionValueVariationEdge>
*/
public function getIterator(): \Traversable
{
yield from $this->edges;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ public function __construct(array $values)
$this->maximumDepth = $maximumDepth;
}

/**
* @return \Traversable<string,ContentDimensionValue>
*/
public function getIterator(): \Traversable
{
yield from $this->values;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,6 @@ public function equals(DimensionSpacePointSet $other): bool
return $thisPointHashes === $otherPointHashes;
}

/**
* @return \Traversable<string,DimensionSpacePoint>
*/
public function getIterator(): \Traversable
{
yield from $this->points;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,6 @@ public function count(): int
return count($this->points);
}

/**
* @return \Traversable<string,OriginDimensionSpacePoint>
*/
public function getIterator(): \Traversable
{
yield from $this->points;
Expand Down
3 changes: 0 additions & 3 deletions Neos.ContentRepository.Core/Classes/EventStore/Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ public static function fromArray(array $events): self
return new self(...$events);
}

/**
* @return \Traversable<EventInterface|DecoratedEvent>
*/
public function getIterator(): \Traversable
{
yield from $this->events;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ public function toDimensionSpacePointSet(): DimensionSpacePointSet
));
}

/**
* @return \Traversable<InterdimensionalSibling>
*/
public function getIterator(): \Traversable
{
yield from $this->items;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ public static function fromReferences(References $nodeReferences): self
return new self($values);
}

/**
* @return \Traversable<string,NodeReferenceSnapshot>
*/
public function getIterator(): \Traversable
{
yield from $this->references;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,6 @@ public function getProperty(string $propertyName): ?SerializedPropertyValue
return $this->values[$propertyName] ?? null;
}

/**
* @return \Traversable<string,SerializedPropertyValue>
*/
public function getIterator(): \Traversable
{
yield from $this->values;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,6 @@ public static function fromJsonString(string $jsonString): self
}
}

/**
* @return \Traversable<NodeReferenceToWrite>
*/
public function getIterator(): \Traversable
{
yield from $this->references;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ public function merge(self $other): self
return new self(...array_merge($this->references, $other->references));
}

/**
* @return \Traversable<SerializedNodeReference>
*/
public function getIterator(): \Traversable
{
yield from $this->references;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function toStringArray(): array

public function getIterator(): \Traversable
{
return new \ArrayIterator(array_values($this->tags));
yield from array_values($this->tags);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ public function merge(self $other): self
return new self(array_merge($this->nodeIds, $other->nodeIds));
}

/**
* @return \Traversable<NodeIdToPublishOrDiscard>
*/
public function getIterator(): \Traversable
{
yield from $this->nodeIds;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ public function isEmpty(): bool
return $this->items === [];
}

/**
* @return \Traversable<int,CommandThatFailedDuringRebase>
*/
public function getIterator(): \Traversable
{
yield from $this->items;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ public function withAdditionalNodeTypeName(NodeTypeName $nodeTypeName): self
return new self(...$nodeTypeNames);
}

/**
* @return \Traversable<NodeTypeName>
*/
public function getIterator(): \Traversable
{
yield from $this->nodeTypeNames;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ public function getCoverage(OriginDimensionSpacePoint $originDimensionSpacePoint
return $this->coverage[$originDimensionSpacePoint->hash] ?? null;
}

/**
* @return \Traversable<string,DimensionSpacePointSet>
*/
public function getIterator(): \Traversable
{
yield from $this->coverage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ public function andByTimestampField(TimestampField $timestampField, OrderingDire
return new self(...[...$this->fields, OrderingField::byTimestampField($timestampField, $direction)]);
}

/**
* @return \Traversable<OrderingField>
*/
public function getIterator(): \Traversable
{
yield from $this->fields;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ public static function createEmpty(): self
return new self([]);
}

/**
* @return \Traversable<NodeAggregate>
*/
public function getIterator(): \Traversable
{
yield from $this->nodeAggregates;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,6 @@ public function offsetGet(mixed $offset): ?Node
return $this->nodes[$offset] ?? null;
}

/**
* @return \Traversable<Node>
*/
public function getIterator(): \Traversable
{
yield from $this->nodes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@ public function getOrigin(DimensionSpacePoint $coveredDimensionSpacePoint): ?Ori
return $this->origins[$coveredDimensionSpacePoint->hash] ?? null;
}

/**
* @return \Traversable<string,OriginDimensionSpacePoint>
*/
public function getIterator(): \Traversable
{
yield from $this->origins;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@ public function getNodes(): Nodes
));
}

/**
* @return \Traversable<int,Reference>
*/
public function getIterator(): \Traversable
{
yield from $this->references;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public function with(string $projectionClassName, ProjectionStatus $projectionSt

public function getIterator(): \Traversable
{
return new \ArrayIterator($this->statuses);
yield from $this->statuses;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* An immutable set of Content Repository projections ({@see ProjectionInterface}
*
* @implements \IteratorAggregate<ProjectionInterface>
* @implements \IteratorAggregate<ProjectionInterface<ProjectionStateInterface>>
* @internal
*/
final class Projections implements \IteratorAggregate, \Countable
Expand Down Expand Up @@ -86,9 +86,6 @@ public function getClassNames(): array
return array_keys($this->projections);
}

/**
* @return \Traversable<ProjectionInterface<ProjectionStateInterface>>
*/
public function getIterator(): \Traversable
{
yield from $this->projections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ public function toStringArray(): array
return array_keys($this->nodeAggregateIds);
}

/**
* @return \Traversable<string,NodeAggregateId>
*/
public function getIterator(): \Traversable
{
yield from $this->nodeAggregateIds;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @implements \IteratorAggregate<int, PropertyName>
* @api
*/
final readonly class PropertyNames implements \IteratorAggregate, \JsonSerializable
final readonly class PropertyNames implements \IteratorAggregate, \Countable, \JsonSerializable
{
/**
* @var array<int, PropertyName>
Expand Down Expand Up @@ -51,11 +51,18 @@ public function jsonSerialize(): mixed
return $this->values;
}

/**
* @return \Traversable<int, PropertyName>
*/
public function getIterator(): \Traversable
{
yield from $this->values;
}

public function isEmpty(): bool
{
return $this->values === [];
}

public function count(): int
{
return count($this->values);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ public static function createEmpty(): self
return new self([]);
}

/**
* @return \Traversable<ContentStream>
*/
public function getIterator(): \Traversable
{
yield from array_values($this->contentStreams);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ public function getDependantWorkspaces(WorkspaceName $workspaceName): Workspaces
);
}

/**
* @return \Traversable<Workspace>
*/
public function getIterator(): \Traversable
{
yield from array_values($this->workspaces);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ public static function fromArray(array $array): self
return new self(array_map(static fn(array $adjustment) => SerializedImageAdjustment::fromArray($adjustment), $array));
}

/**
* @return \Traversable<SerializedImageAdjustment>
*/
public function getIterator(): \Traversable
{
yield from $this->serializedAdjustments;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ public function toJsonl(): string
return $result;
}

/**
* @return \Traversable<ExportedEvent>
*/
public function getIterator(): \Traversable
{
return ($this->generator)();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ public function __construct(
) {
}

/**
* @return \Traversable<int, array<string, mixed>>
*/
public function getIterator(): \Traversable
{
$query = $this->connection->executeQuery('
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ class FeatureContext implements Context
use CRTestSuiteTrait;
use CRBehavioralTestsSubjectProvider;

protected $isolated = false;

private array $nodeDataRows = [];
/** @var array<PersistentResource> */
private array $mockResources = [];
Expand All @@ -71,8 +69,6 @@ class FeatureContext implements Context
*/
private array $loggedWarnings = [];

private ContentRepository $contentRepository;

protected ContentRepositoryRegistry $contentRepositoryRegistry;

public function __construct()
Expand Down
Loading
Loading