Skip to content

Commit

Permalink
Apply tweaks and fixes from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Aug 25, 2023
1 parent c771055 commit 086ae63
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@
use Neos\EventStore\Model\EventEnvelope;
use Neos\EventStore\Model\EventStore\SetupResult;

use function get_debug_type;

/**
* @implements ProjectionInterface<ContentGraph>
* @internal but the graph projection is api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@
use Neos\EventStore\Model\EventEnvelope;
use Neos\EventStore\Model\EventStore\SetupResult;

use function sprintf;

/**
* The alternate reality-aware hypergraph projector for the PostgreSQL backend via Doctrine DBAL
*
Expand Down
2 changes: 1 addition & 1 deletion Neos.ContentRepository.Core/Classes/ContentRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function projectionState(string $projectionStateClassName): ProjectionSta
return $projectionState;
}
}
throw new \InvalidArgumentException(sprintf('a projection state of type "%s" is not registered in this content repository instance.', $projectionStateClassName), 1662033650);
throw new \InvalidArgumentException(sprintf('A projection state of type "%s" is not registered in this content repository instance.', $projectionStateClassName), 1662033650);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
use Neos\EventStore\Model\Event\SequenceNumber;
use Neos\EventStore\Model\EventEnvelope;

use function sprintf;

/**
* See {@see ContentStreamFinder} for explanation.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
use Neos\EventStore\Model\Event\SequenceNumber;
use Neos\EventStore\Model\EventEnvelope;

use function sprintf;

/**
* TODO: this class needs proper testing
* @internal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
use Neos\EventStore\Model\Event\SequenceNumber;
use Neos\EventStore\Model\EventEnvelope;

use function sprintf;

/**
* @internal
* @implements ProjectionInterface<WorkspaceFinder>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
use Neos\Utility\Exception\InvalidTypeException;
use Neos\Utility\TypeHandling;

use function sprintf;

/**
* @implements ProjectionInterface<AssetUsageFinder>
* @internal
Expand Down

0 comments on commit 086ae63

Please sign in to comment.