diff --git a/Classes/ContentRepository/Service/WorkspaceService.php b/Classes/ContentRepository/Service/WorkspaceService.php index ae6db1eca0..2103322b8a 100644 --- a/Classes/ContentRepository/Service/WorkspaceService.php +++ b/Classes/ContentRepository/Service/WorkspaceService.php @@ -30,6 +30,7 @@ use Neos\Neos\Utility\NodeTypeWithFallbackProvider; /** + * @internal * @Flow\Scope("singleton") */ class WorkspaceService diff --git a/Classes/Controller/BackendController.php b/Classes/Controller/BackendController.php index 23fec0e5cd..2067bb623c 100644 --- a/Classes/Controller/BackendController.php +++ b/Classes/Controller/BackendController.php @@ -35,6 +35,9 @@ use Neos\Neos\Ui\Domain\InitialData\RoutesProviderInterface; use Neos\Neos\Ui\Presentation\ApplicationView; +/** + * @internal + */ class BackendController extends ActionController { /** diff --git a/Classes/Controller/BackendControllerInternals.php b/Classes/Controller/BackendControllerInternals.php index a0e31b0730..14b5c3513c 100644 --- a/Classes/Controller/BackendControllerInternals.php +++ b/Classes/Controller/BackendControllerInternals.php @@ -20,6 +20,7 @@ /** * @deprecated really un-nice :D + * @internal */ class BackendControllerInternals implements ContentRepositoryServiceInterface { diff --git a/Classes/Controller/BackendControllerInternalsFactory.php b/Classes/Controller/BackendControllerInternalsFactory.php index 4c59a36338..bb9bf3752b 100644 --- a/Classes/Controller/BackendControllerInternalsFactory.php +++ b/Classes/Controller/BackendControllerInternalsFactory.php @@ -20,6 +20,7 @@ /** * @deprecated * @implements ContentRepositoryServiceFactoryInterface + * @internal */ class BackendControllerInternalsFactory implements ContentRepositoryServiceFactoryInterface { diff --git a/Classes/Controller/BackendServiceController.php b/Classes/Controller/BackendServiceController.php index ab9715a03a..5e056a933a 100644 --- a/Classes/Controller/BackendServiceController.php +++ b/Classes/Controller/BackendServiceController.php @@ -55,6 +55,9 @@ use Neos\Neos\Ui\TypeConverter\ChangeCollectionConverter; use Neos\Neos\Utility\NodeUriPathSegmentGenerator; +/** + * @internal + */ class BackendServiceController extends ActionController { use TranslationTrait; diff --git a/Classes/Controller/TranslationTrait.php b/Classes/Controller/TranslationTrait.php index fb353f51fe..4875863b10 100644 --- a/Classes/Controller/TranslationTrait.php +++ b/Classes/Controller/TranslationTrait.php @@ -19,6 +19,7 @@ /** * A trait to do easy backend module translations + * @internal */ trait TranslationTrait { diff --git a/Classes/Domain/Model/AbstractChange.php b/Classes/Domain/Model/AbstractChange.php index b118c1168c..54bf1761bd 100644 --- a/Classes/Domain/Model/AbstractChange.php +++ b/Classes/Domain/Model/AbstractChange.php @@ -23,6 +23,9 @@ use Neos\Neos\Ui\Domain\Model\Feedback\Operations\UpdateWorkspaceInfo; use Neos\Neos\Utility\NodeTypeWithFallbackProvider; +/** + * @internal + */ abstract class AbstractChange implements ChangeInterface { use NodeTypeWithFallbackProvider; diff --git a/Classes/Domain/Model/AbstractFeedback.php b/Classes/Domain/Model/AbstractFeedback.php index e852cd7c60..556d761252 100644 --- a/Classes/Domain/Model/AbstractFeedback.php +++ b/Classes/Domain/Model/AbstractFeedback.php @@ -14,6 +14,9 @@ use Neos\Flow\Mvc\Controller\ControllerContext; +/** + * @internal + */ abstract class AbstractFeedback implements FeedbackInterface { /** @return array */ diff --git a/Classes/Domain/Model/ChangeCollection.php b/Classes/Domain/Model/ChangeCollection.php index e2c64a589c..4c17a6506a 100644 --- a/Classes/Domain/Model/ChangeCollection.php +++ b/Classes/Domain/Model/ChangeCollection.php @@ -13,6 +13,7 @@ /** * A collection of changes + * @internal */ class ChangeCollection { diff --git a/Classes/Domain/Model/ChangeInterface.php b/Classes/Domain/Model/ChangeInterface.php index 587d8941b4..de3728aa35 100644 --- a/Classes/Domain/Model/ChangeInterface.php +++ b/Classes/Domain/Model/ChangeInterface.php @@ -17,6 +17,7 @@ /** * An interface to describe a change + * @internal */ interface ChangeInterface { diff --git a/Classes/Domain/Model/Changes/AbstractCreate.php b/Classes/Domain/Model/Changes/AbstractCreate.php index c2278f8d3b..6cebb1e932 100644 --- a/Classes/Domain/Model/Changes/AbstractCreate.php +++ b/Classes/Domain/Model/Changes/AbstractCreate.php @@ -24,6 +24,11 @@ use Neos\Neos\Ui\NodeCreationHandler\NodeCreationHandlerInterface; use Neos\Utility\PositionalArraySorter; +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ abstract class AbstractCreate extends AbstractStructuralChange { /** diff --git a/Classes/Domain/Model/Changes/AbstractStructuralChange.php b/Classes/Domain/Model/Changes/AbstractStructuralChange.php index f49e22baa5..f0ef587978 100644 --- a/Classes/Domain/Model/Changes/AbstractStructuralChange.php +++ b/Classes/Domain/Model/Changes/AbstractStructuralChange.php @@ -30,6 +30,9 @@ /** * A change that performs structural actions like moving or creating nodes + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. */ abstract class AbstractStructuralChange extends AbstractChange { diff --git a/Classes/Domain/Model/Changes/CopyAfter.php b/Classes/Domain/Model/Changes/CopyAfter.php index 45123f14a7..df9f0afb26 100644 --- a/Classes/Domain/Model/Changes/CopyAfter.php +++ b/Classes/Domain/Model/Changes/CopyAfter.php @@ -17,6 +17,11 @@ use Neos\ContentRepository\Core\Projection\ContentGraph\VisibilityConstraints; use Neos\ContentRepository\Core\SharedModel\Node\NodeName; +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class CopyAfter extends AbstractStructuralChange { /** diff --git a/Classes/Domain/Model/Changes/CopyBefore.php b/Classes/Domain/Model/Changes/CopyBefore.php index 6f98945434..477c2c11c4 100644 --- a/Classes/Domain/Model/Changes/CopyBefore.php +++ b/Classes/Domain/Model/Changes/CopyBefore.php @@ -16,6 +16,11 @@ use Neos\ContentRepository\Core\Feature\NodeDuplication\Command\CopyNodesRecursively; use Neos\ContentRepository\Core\SharedModel\Node\NodeName; +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class CopyBefore extends AbstractStructuralChange { /** diff --git a/Classes/Domain/Model/Changes/CopyInto.php b/Classes/Domain/Model/Changes/CopyInto.php index e6e102b153..122d9b16df 100644 --- a/Classes/Domain/Model/Changes/CopyInto.php +++ b/Classes/Domain/Model/Changes/CopyInto.php @@ -17,6 +17,11 @@ use Neos\ContentRepository\Core\Projection\ContentGraph\Node; use Neos\ContentRepository\Core\SharedModel\Node\NodeName; +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class CopyInto extends AbstractStructuralChange { protected ?string $parentContextPath; diff --git a/Classes/Domain/Model/Changes/Create.php b/Classes/Domain/Model/Changes/Create.php index d80a04da12..60bdfb1bf3 100644 --- a/Classes/Domain/Model/Changes/Create.php +++ b/Classes/Domain/Model/Changes/Create.php @@ -12,6 +12,11 @@ * source code. */ +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class Create extends AbstractCreate { public function setParentContextPath(string $parentContextPath): void diff --git a/Classes/Domain/Model/Changes/CreateAfter.php b/Classes/Domain/Model/Changes/CreateAfter.php index 58e3ef0690..44fa38116d 100644 --- a/Classes/Domain/Model/Changes/CreateAfter.php +++ b/Classes/Domain/Model/Changes/CreateAfter.php @@ -12,6 +12,11 @@ * source code. */ +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class CreateAfter extends AbstractCreate { /** diff --git a/Classes/Domain/Model/Changes/CreateBefore.php b/Classes/Domain/Model/Changes/CreateBefore.php index 8d2ca82f04..e6505586cc 100644 --- a/Classes/Domain/Model/Changes/CreateBefore.php +++ b/Classes/Domain/Model/Changes/CreateBefore.php @@ -12,7 +12,11 @@ * source code. */ - +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class CreateBefore extends AbstractCreate { /** diff --git a/Classes/Domain/Model/Changes/MoveAfter.php b/Classes/Domain/Model/Changes/MoveAfter.php index beb8e275d9..c2405ca396 100644 --- a/Classes/Domain/Model/Changes/MoveAfter.php +++ b/Classes/Domain/Model/Changes/MoveAfter.php @@ -18,6 +18,11 @@ use Neos\Neos\Ui\Domain\Model\Feedback\Operations\RemoveNode; use Neos\Neos\Ui\Domain\Model\Feedback\Operations\UpdateNodeInfo; +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class MoveAfter extends AbstractStructuralChange { /** diff --git a/Classes/Domain/Model/Changes/MoveBefore.php b/Classes/Domain/Model/Changes/MoveBefore.php index 7b2d8285e9..276ac2fa26 100644 --- a/Classes/Domain/Model/Changes/MoveBefore.php +++ b/Classes/Domain/Model/Changes/MoveBefore.php @@ -17,6 +17,11 @@ use Neos\Neos\Ui\Domain\Model\Feedback\Operations\RemoveNode; use Neos\Neos\Ui\Domain\Model\Feedback\Operations\UpdateNodeInfo; +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class MoveBefore extends AbstractStructuralChange { /** diff --git a/Classes/Domain/Model/Changes/MoveInto.php b/Classes/Domain/Model/Changes/MoveInto.php index 2018a8f1c1..cde5731fa7 100644 --- a/Classes/Domain/Model/Changes/MoveInto.php +++ b/Classes/Domain/Model/Changes/MoveInto.php @@ -18,6 +18,11 @@ use Neos\Neos\Ui\Domain\Model\Feedback\Operations\RemoveNode; use Neos\Neos\Ui\Domain\Model\Feedback\Operations\UpdateNodeInfo; +/** + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. + */ class MoveInto extends AbstractStructuralChange { protected ?string $parentContextPath; diff --git a/Classes/Domain/Model/Changes/Property.php b/Classes/Domain/Model/Changes/Property.php index 448a15a260..1e84723168 100644 --- a/Classes/Domain/Model/Changes/Property.php +++ b/Classes/Domain/Model/Changes/Property.php @@ -43,6 +43,9 @@ /** * Changes a property on a node + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. */ class Property extends AbstractChange { diff --git a/Classes/Domain/Model/Changes/Remove.php b/Classes/Domain/Model/Changes/Remove.php index 29987380dd..872d84422a 100644 --- a/Classes/Domain/Model/Changes/Remove.php +++ b/Classes/Domain/Model/Changes/Remove.php @@ -27,6 +27,9 @@ /** * Removes a node + * @internal These objects internally reflect possible operations made by the Neos.Ui. + * They are sorely an implementation detail. You should not use them! + * Please look into the php command API of the Neos CR instead. */ class Remove extends AbstractChange { diff --git a/Classes/Domain/Model/Feedback/AbstractMessageFeedback.php b/Classes/Domain/Model/Feedback/AbstractMessageFeedback.php index a9075adea4..a9dbf90fa6 100644 --- a/Classes/Domain/Model/Feedback/AbstractMessageFeedback.php +++ b/Classes/Domain/Model/Feedback/AbstractMessageFeedback.php @@ -15,6 +15,9 @@ use Neos\Neos\Ui\Domain\Model\AbstractFeedback; use Neos\Neos\Ui\Domain\Model\FeedbackInterface; +/** + * @internal + */ abstract class AbstractMessageFeedback extends AbstractFeedback { /** diff --git a/Classes/Domain/Model/Feedback/Messages/Error.php b/Classes/Domain/Model/Feedback/Messages/Error.php index b32515a712..81068e1427 100644 --- a/Classes/Domain/Model/Feedback/Messages/Error.php +++ b/Classes/Domain/Model/Feedback/Messages/Error.php @@ -13,6 +13,9 @@ use Neos\Neos\Ui\Domain\Model\Feedback\AbstractMessageFeedback; +/** + * @internal + */ class Error extends AbstractMessageFeedback { /** diff --git a/Classes/Domain/Model/Feedback/Messages/Info.php b/Classes/Domain/Model/Feedback/Messages/Info.php index f4679633d5..69253c78b2 100644 --- a/Classes/Domain/Model/Feedback/Messages/Info.php +++ b/Classes/Domain/Model/Feedback/Messages/Info.php @@ -13,6 +13,9 @@ use Neos\Neos\Ui\Domain\Model\Feedback\AbstractMessageFeedback; +/** + * @internal + */ class Info extends AbstractMessageFeedback { /** diff --git a/Classes/Domain/Model/Feedback/Messages/Success.php b/Classes/Domain/Model/Feedback/Messages/Success.php index b86e58d5ff..af10fbbf5f 100644 --- a/Classes/Domain/Model/Feedback/Messages/Success.php +++ b/Classes/Domain/Model/Feedback/Messages/Success.php @@ -13,6 +13,9 @@ use Neos\Neos\Ui\Domain\Model\Feedback\AbstractMessageFeedback; +/** + * @internal + */ class Success extends AbstractMessageFeedback { /** diff --git a/Classes/Domain/Model/Feedback/Operations/NodeCreated.php b/Classes/Domain/Model/Feedback/Operations/NodeCreated.php index cf76c19a25..ab576c4ee6 100644 --- a/Classes/Domain/Model/Feedback/Operations/NodeCreated.php +++ b/Classes/Domain/Model/Feedback/Operations/NodeCreated.php @@ -21,6 +21,9 @@ use Neos\Neos\Ui\Domain\Model\FeedbackInterface; use Neos\Neos\Utility\NodeTypeWithFallbackProvider; +/** + * @internal + */ class NodeCreated extends AbstractFeedback { use NodeTypeWithFallbackProvider; diff --git a/Classes/Domain/Model/Feedback/Operations/Redirect.php b/Classes/Domain/Model/Feedback/Operations/Redirect.php index e5d271dc88..56e05e2490 100644 --- a/Classes/Domain/Model/Feedback/Operations/Redirect.php +++ b/Classes/Domain/Model/Feedback/Operations/Redirect.php @@ -10,6 +10,9 @@ use Neos\Neos\Ui\Domain\Model\AbstractFeedback; use Neos\Neos\Ui\Domain\Model\FeedbackInterface; +/** + * @internal + */ class Redirect extends AbstractFeedback { /** diff --git a/Classes/Domain/Model/Feedback/Operations/ReloadContentOutOfBand.php b/Classes/Domain/Model/Feedback/Operations/ReloadContentOutOfBand.php index 8b8b5b900b..847aa09df3 100644 --- a/Classes/Domain/Model/Feedback/Operations/ReloadContentOutOfBand.php +++ b/Classes/Domain/Model/Feedback/Operations/ReloadContentOutOfBand.php @@ -26,6 +26,9 @@ use Neos\Neos\Ui\View\OutOfBandRenderingViewFactory; use Psr\Http\Message\ResponseInterface; +/** + * @internal + */ class ReloadContentOutOfBand extends AbstractFeedback { protected ?Node $node = null; diff --git a/Classes/Domain/Model/Feedback/Operations/ReloadDocument.php b/Classes/Domain/Model/Feedback/Operations/ReloadDocument.php index 3b8ee6a13b..232f562cdc 100644 --- a/Classes/Domain/Model/Feedback/Operations/ReloadDocument.php +++ b/Classes/Domain/Model/Feedback/Operations/ReloadDocument.php @@ -21,6 +21,9 @@ use Neos\Neos\Ui\Domain\Model\FeedbackInterface; use Neos\Neos\Ui\Fusion\Helper\NodeInfoHelper; +/** + * @internal + */ class ReloadDocument extends AbstractFeedback { protected ?Node $node = null; diff --git a/Classes/Domain/Model/Feedback/Operations/RemoveNode.php b/Classes/Domain/Model/Feedback/Operations/RemoveNode.php index f068c2ccba..b1b44be14a 100644 --- a/Classes/Domain/Model/Feedback/Operations/RemoveNode.php +++ b/Classes/Domain/Model/Feedback/Operations/RemoveNode.php @@ -20,6 +20,9 @@ use Neos\Neos\Ui\Domain\Model\AbstractFeedback; use Neos\Neos\Ui\Domain\Model\FeedbackInterface; +/** + * @internal + */ class RemoveNode extends AbstractFeedback { protected Node $node; diff --git a/Classes/Domain/Model/Feedback/Operations/RenderContentOutOfBand.php b/Classes/Domain/Model/Feedback/Operations/RenderContentOutOfBand.php index d5714f8641..e353e636b2 100644 --- a/Classes/Domain/Model/Feedback/Operations/RenderContentOutOfBand.php +++ b/Classes/Domain/Model/Feedback/Operations/RenderContentOutOfBand.php @@ -29,6 +29,9 @@ use Neos\Neos\Ui\View\OutOfBandRenderingViewFactory; use Psr\Http\Message\ResponseInterface; +/** + * @internal + */ class RenderContentOutOfBand extends AbstractFeedback { protected ?Node $node = null; diff --git a/Classes/Domain/Model/Feedback/Operations/UpdateNodeInfo.php b/Classes/Domain/Model/Feedback/Operations/UpdateNodeInfo.php index 27d363dec6..3fa70b4a91 100644 --- a/Classes/Domain/Model/Feedback/Operations/UpdateNodeInfo.php +++ b/Classes/Domain/Model/Feedback/Operations/UpdateNodeInfo.php @@ -21,6 +21,9 @@ use Neos\Neos\Ui\Domain\Model\FeedbackInterface; use Neos\Neos\Ui\Fusion\Helper\NodeInfoHelper; +/** + * @internal + */ class UpdateNodeInfo extends AbstractFeedback { protected ?Node $node = null; diff --git a/Classes/Domain/Model/Feedback/Operations/UpdateNodePath.php b/Classes/Domain/Model/Feedback/Operations/UpdateNodePath.php index 10902a0ad6..50538adeee 100644 --- a/Classes/Domain/Model/Feedback/Operations/UpdateNodePath.php +++ b/Classes/Domain/Model/Feedback/Operations/UpdateNodePath.php @@ -15,6 +15,9 @@ use Neos\Neos\Ui\Domain\Model\AbstractFeedback; use Neos\Neos\Ui\Domain\Model\FeedbackInterface; +/** + * @internal + */ class UpdateNodePath extends AbstractFeedback { /** diff --git a/Classes/Domain/Model/Feedback/Operations/UpdateNodePreviewUrl.php b/Classes/Domain/Model/Feedback/Operations/UpdateNodePreviewUrl.php index 5ef0b821f3..9c5110a0be 100644 --- a/Classes/Domain/Model/Feedback/Operations/UpdateNodePreviewUrl.php +++ b/Classes/Domain/Model/Feedback/Operations/UpdateNodePreviewUrl.php @@ -20,6 +20,9 @@ use Neos\Neos\Ui\Domain\Model\FeedbackInterface; use Neos\Neos\Ui\Fusion\Helper\NodeInfoHelper; +/** + * @internal + */ class UpdateNodePreviewUrl extends AbstractFeedback { /** diff --git a/Classes/Domain/Model/Feedback/Operations/UpdateWorkspaceInfo.php b/Classes/Domain/Model/Feedback/Operations/UpdateWorkspaceInfo.php index 4f9d7a8b11..959c1e666a 100644 --- a/Classes/Domain/Model/Feedback/Operations/UpdateWorkspaceInfo.php +++ b/Classes/Domain/Model/Feedback/Operations/UpdateWorkspaceInfo.php @@ -21,6 +21,9 @@ use Neos\Neos\Ui\Domain\Model\FeedbackInterface; use Neos\Flow\Mvc\Controller\ControllerContext; +/** + * @internal + */ class UpdateWorkspaceInfo extends AbstractFeedback { protected ?WorkspaceName $workspaceName = null; diff --git a/Classes/Domain/Model/FeedbackCollection.php b/Classes/Domain/Model/FeedbackCollection.php index 5f5a9dd9f7..8fdbcbde11 100644 --- a/Classes/Domain/Model/FeedbackCollection.php +++ b/Classes/Domain/Model/FeedbackCollection.php @@ -16,6 +16,7 @@ /** * @Flow\Scope("singleton") + * @internal */ class FeedbackCollection implements \JsonSerializable { diff --git a/Classes/Domain/Model/FeedbackInterface.php b/Classes/Domain/Model/FeedbackInterface.php index 6eb7af63b7..dddbe5f44c 100644 --- a/Classes/Domain/Model/FeedbackInterface.php +++ b/Classes/Domain/Model/FeedbackInterface.php @@ -13,6 +13,9 @@ use Neos\Flow\Mvc\Controller\ControllerContext; +/** + * @internal + */ interface FeedbackInterface { /** diff --git a/Classes/Domain/Model/ReferencingChangeInterface.php b/Classes/Domain/Model/ReferencingChangeInterface.php index 24f1ba1a87..e7eea0f535 100644 --- a/Classes/Domain/Model/ReferencingChangeInterface.php +++ b/Classes/Domain/Model/ReferencingChangeInterface.php @@ -15,6 +15,7 @@ /** * A change that needs to reference another node + * @internal */ interface ReferencingChangeInterface extends ChangeInterface { diff --git a/Classes/Domain/Model/RenderedNodeDomAddress.php b/Classes/Domain/Model/RenderedNodeDomAddress.php index 249ce70e1e..977d39387b 100644 --- a/Classes/Domain/Model/RenderedNodeDomAddress.php +++ b/Classes/Domain/Model/RenderedNodeDomAddress.php @@ -13,6 +13,7 @@ /** * Data to address rendered nodes within the DOM + * @internal */ class RenderedNodeDomAddress implements \JsonSerializable { diff --git a/Classes/Domain/Service/ConfigurationRenderingService.php b/Classes/Domain/Service/ConfigurationRenderingService.php index 577934152d..17e2c24ac4 100644 --- a/Classes/Domain/Service/ConfigurationRenderingService.php +++ b/Classes/Domain/Service/ConfigurationRenderingService.php @@ -17,6 +17,7 @@ /** * @Flow\Scope("singleton") + * @internal */ class ConfigurationRenderingService { diff --git a/Classes/Domain/Service/NodePropertyConversionService.php b/Classes/Domain/Service/NodePropertyConversionService.php index 2e5af9169e..96d893e7cc 100644 --- a/Classes/Domain/Service/NodePropertyConversionService.php +++ b/Classes/Domain/Service/NodePropertyConversionService.php @@ -22,6 +22,7 @@ /** * @Flow\Scope("singleton") + * @internal */ class NodePropertyConversionService { diff --git a/Classes/Domain/Service/NodePropertyConverterService.php b/Classes/Domain/Service/NodePropertyConverterService.php index 234bf1fea3..70a4faf39a 100644 --- a/Classes/Domain/Service/NodePropertyConverterService.php +++ b/Classes/Domain/Service/NodePropertyConverterService.php @@ -41,6 +41,7 @@ * instead of the objects. * * @Flow\Scope("singleton") + * @internal */ class NodePropertyConverterService { diff --git a/Classes/Domain/Service/StyleAndJavascriptInclusionService.php b/Classes/Domain/Service/StyleAndJavascriptInclusionService.php index c54465ed43..8cd241d83e 100644 --- a/Classes/Domain/Service/StyleAndJavascriptInclusionService.php +++ b/Classes/Domain/Service/StyleAndJavascriptInclusionService.php @@ -19,6 +19,7 @@ /** * @Flow\Scope("singleton") + * @internal */ class StyleAndJavascriptInclusionService { diff --git a/Classes/Domain/Service/UserLocaleService.php b/Classes/Domain/Service/UserLocaleService.php index aaafb2d721..ec1c5fde6d 100644 --- a/Classes/Domain/Service/UserLocaleService.php +++ b/Classes/Domain/Service/UserLocaleService.php @@ -16,6 +16,9 @@ use Neos\Flow\I18n\Service as I18nService; use Neos\Neos\Domain\Service\UserService; +/** + * @internal + */ class UserLocaleService { /** diff --git a/Classes/Exception/InvalidNodeCreationHandlerException.php b/Classes/Exception/InvalidNodeCreationHandlerException.php index 3a22f228f6..ce03b2c0ac 100644 --- a/Classes/Exception/InvalidNodeCreationHandlerException.php +++ b/Classes/Exception/InvalidNodeCreationHandlerException.php @@ -13,6 +13,7 @@ /** * InvalidNodeCreationHandlerException exception + * @internal */ class InvalidNodeCreationHandlerException extends \Exception { diff --git a/Classes/FlowQueryOperations/NeosUiDefaultNodesOperation.php b/Classes/FlowQueryOperations/NeosUiDefaultNodesOperation.php index b2f6f414e3..f7b9be37e0 100644 --- a/Classes/FlowQueryOperations/NeosUiDefaultNodesOperation.php +++ b/Classes/FlowQueryOperations/NeosUiDefaultNodesOperation.php @@ -22,6 +22,9 @@ use Neos\Neos\FrontendRouting\NodeAddressFactory; use Neos\Flow\Annotations as Flow; +/** + * @internal + */ class NeosUiDefaultNodesOperation extends AbstractOperation { /** diff --git a/Classes/FlowQueryOperations/NeosUiFilteredChildrenOperation.php b/Classes/FlowQueryOperations/NeosUiFilteredChildrenOperation.php index 56cb578f34..ff98bd9c43 100644 --- a/Classes/FlowQueryOperations/NeosUiFilteredChildrenOperation.php +++ b/Classes/FlowQueryOperations/NeosUiFilteredChildrenOperation.php @@ -24,6 +24,7 @@ * "children" operation working on ContentRepository nodes. It iterates over all * context elements and returns all child nodes or only those matching * the filter expression specified as optional argument. + * @internal */ class NeosUiFilteredChildrenOperation extends AbstractOperation { diff --git a/Classes/FlowQueryOperations/SearchOperation.php b/Classes/FlowQueryOperations/SearchOperation.php index e4af117f9f..e542683813 100644 --- a/Classes/FlowQueryOperations/SearchOperation.php +++ b/Classes/FlowQueryOperations/SearchOperation.php @@ -26,6 +26,7 @@ * Custom search operation using the Content Graph fulltext search * * Original implementation: \Neos\Neos\Ui\FlowQueryOperations\SearchOperation + * @internal */ class SearchOperation extends AbstractOperation { diff --git a/Classes/Fusion/ExceptionHandler/PageExceptionHandler.php b/Classes/Fusion/ExceptionHandler/PageExceptionHandler.php index 3ac58869a0..f3a4455a14 100644 --- a/Classes/Fusion/ExceptionHandler/PageExceptionHandler.php +++ b/Classes/Fusion/ExceptionHandler/PageExceptionHandler.php @@ -27,6 +27,7 @@ * * FIXME: When the old UI is removed this handler needs to be untangled from the PageHandler as the parent functionality is no longer needed. * FIXME: We should adapt rendering to requested "format" at some point + * @internal */ class PageExceptionHandler extends AbstractRenderingExceptionHandler { diff --git a/Classes/Fusion/Helper/ApiHelper.php b/Classes/Fusion/Helper/ApiHelper.php index e53289a259..3cc9ea0d7c 100644 --- a/Classes/Fusion/Helper/ApiHelper.php +++ b/Classes/Fusion/Helper/ApiHelper.php @@ -13,6 +13,9 @@ use Neos\Eel\ProtectedContextAwareInterface; +/** + * @todo EEL helpers are still to be declared as internal + */ class ApiHelper implements ProtectedContextAwareInterface { /** diff --git a/Classes/Fusion/Helper/ContentDimensionsHelper.php b/Classes/Fusion/Helper/ContentDimensionsHelper.php index 18a5ac1181..3762102205 100644 --- a/Classes/Fusion/Helper/ContentDimensionsHelper.php +++ b/Classes/Fusion/Helper/ContentDimensionsHelper.php @@ -21,6 +21,9 @@ use Neos\Eel\ProtectedContextAwareInterface; use Neos\Flow\Annotations as Flow; +/** + * @todo EEL helpers are still to be declared as internal + */ class ContentDimensionsHelper implements ProtectedContextAwareInterface { /** diff --git a/Classes/Fusion/Helper/ContentDimensionsHelperInternals.php b/Classes/Fusion/Helper/ContentDimensionsHelperInternals.php index 36e06f8276..8aa3e78206 100644 --- a/Classes/Fusion/Helper/ContentDimensionsHelperInternals.php +++ b/Classes/Fusion/Helper/ContentDimensionsHelperInternals.php @@ -17,6 +17,7 @@ /** * @deprecated ugly - we want to get rid of this by adding dimension infos in the Subgraph + * @todo EEL helpers are still to be declared as internal */ class ContentDimensionsHelperInternals implements ContentRepositoryServiceInterface { diff --git a/Classes/Fusion/Helper/ContentDimensionsHelperInternalsFactory.php b/Classes/Fusion/Helper/ContentDimensionsHelperInternalsFactory.php index 1bb0c34aae..79296fff9a 100644 --- a/Classes/Fusion/Helper/ContentDimensionsHelperInternalsFactory.php +++ b/Classes/Fusion/Helper/ContentDimensionsHelperInternalsFactory.php @@ -19,6 +19,7 @@ /** * @deprecated ugly - we want to get rid of this by adding dimension infos in the Subgraph * @implements ContentRepositoryServiceFactoryInterface + * @todo EEL helpers are still to be declared as internal */ class ContentDimensionsHelperInternalsFactory implements ContentRepositoryServiceFactoryInterface { diff --git a/Classes/Fusion/Helper/NodeInfoHelper.php b/Classes/Fusion/Helper/NodeInfoHelper.php index 5ebbca8ef1..980364e2ec 100644 --- a/Classes/Fusion/Helper/NodeInfoHelper.php +++ b/Classes/Fusion/Helper/NodeInfoHelper.php @@ -31,6 +31,7 @@ /** * @Flow\Scope("singleton") + * @todo EEL helpers are still to be declared as internal */ class NodeInfoHelper implements ProtectedContextAwareInterface { diff --git a/Classes/Fusion/Helper/PositionalArraySorterHelper.php b/Classes/Fusion/Helper/PositionalArraySorterHelper.php index 5cb7bc44b4..ee9b53fd83 100644 --- a/Classes/Fusion/Helper/PositionalArraySorterHelper.php +++ b/Classes/Fusion/Helper/PositionalArraySorterHelper.php @@ -14,6 +14,9 @@ use Neos\Eel\ProtectedContextAwareInterface; use Neos\Utility\PositionalArraySorter; +/** + * @todo EEL helpers are still to be declared as internal + */ class PositionalArraySorterHelper implements ProtectedContextAwareInterface { /** diff --git a/Classes/Fusion/Helper/StaticResourcesHelper.php b/Classes/Fusion/Helper/StaticResourcesHelper.php index 1e0b595bd3..6b4d1cbcfc 100644 --- a/Classes/Fusion/Helper/StaticResourcesHelper.php +++ b/Classes/Fusion/Helper/StaticResourcesHelper.php @@ -14,6 +14,9 @@ use Neos\Eel\ProtectedContextAwareInterface; use Neos\Flow\Annotations as Flow; +/** + * @todo EEL helpers are still to be declared as internal + */ class StaticResourcesHelper implements ProtectedContextAwareInterface { /** diff --git a/Classes/Fusion/Helper/WorkspaceHelper.php b/Classes/Fusion/Helper/WorkspaceHelper.php index e58c20be2e..721c6b05aa 100644 --- a/Classes/Fusion/Helper/WorkspaceHelper.php +++ b/Classes/Fusion/Helper/WorkspaceHelper.php @@ -22,6 +22,7 @@ /** * The Workspace helper for EEL contexts + * @todo EEL helpers are still to be declared as internal */ class WorkspaceHelper implements ProtectedContextAwareInterface { diff --git a/Classes/Fusion/RenderConfigurationImplementation.php b/Classes/Fusion/RenderConfigurationImplementation.php index 96b085b7f0..22fb3ab602 100644 --- a/Classes/Fusion/RenderConfigurationImplementation.php +++ b/Classes/Fusion/RenderConfigurationImplementation.php @@ -16,6 +16,9 @@ use Neos\Fusion\FusionObjects\AbstractFusionObject; use Neos\Neos\Ui\Domain\Service\ConfigurationRenderingService; +/** + * @internal + */ class RenderConfigurationImplementation extends AbstractFusionObject { /** diff --git a/Classes/Infrastructure/Configuration/InitialStateProvider.php b/Classes/Infrastructure/Configuration/InitialStateProvider.php index ff984c40fb..20f69ee667 100644 --- a/Classes/Infrastructure/Configuration/InitialStateProvider.php +++ b/Classes/Infrastructure/Configuration/InitialStateProvider.php @@ -23,6 +23,9 @@ use Neos\Neos\Ui\Domain\Service\ConfigurationRenderingService; use Neos\Neos\Ui\Service\NodeClipboard; +/** + * @internal + */ #[Flow\Scope("singleton")] final class InitialStateProvider implements InitialStateProviderInterface { diff --git a/Classes/Infrastructure/ContentRepository/NodeTypeGroupsAndRolesProvider.php b/Classes/Infrastructure/ContentRepository/NodeTypeGroupsAndRolesProvider.php index 429702eaa2..a892a3bb88 100644 --- a/Classes/Infrastructure/ContentRepository/NodeTypeGroupsAndRolesProvider.php +++ b/Classes/Infrastructure/ContentRepository/NodeTypeGroupsAndRolesProvider.php @@ -17,6 +17,9 @@ use Neos\Flow\Annotations as Flow; use Neos\Neos\Ui\Domain\InitialData\NodeTypeGroupsAndRolesProviderInterface; +/** + * @internal + */ #[Flow\Scope("singleton")] final class NodeTypeGroupsAndRolesProvider implements NodeTypeGroupsAndRolesProviderInterface { diff --git a/Classes/Infrastructure/Neos/MenuProvider.php b/Classes/Infrastructure/Neos/MenuProvider.php index 43d146c414..560bf5c69f 100644 --- a/Classes/Infrastructure/Neos/MenuProvider.php +++ b/Classes/Infrastructure/Neos/MenuProvider.php @@ -20,6 +20,9 @@ use Neos\Neos\Ui\Domain\InitialData\MenuProviderInterface; use Neos\Utility\PositionalArraySorter; +/** + * @internal + */ #[Flow\Scope("singleton")] final class MenuProvider implements MenuProviderInterface { diff --git a/Classes/NodeCreationHandler/ContentTitleNodeCreationHandler.php b/Classes/NodeCreationHandler/ContentTitleNodeCreationHandler.php index 8e42438abf..cd2f68fa16 100644 --- a/Classes/NodeCreationHandler/ContentTitleNodeCreationHandler.php +++ b/Classes/NodeCreationHandler/ContentTitleNodeCreationHandler.php @@ -24,6 +24,7 @@ * * Note: This is not actually a Command Handler in the sense of CQRS but rather some kind of * "command enricher" + * @internal */ class ContentTitleNodeCreationHandler implements NodeCreationHandlerInterface { diff --git a/Classes/NodeCreationHandler/CreationDialogPropertiesCreationHandler.php b/Classes/NodeCreationHandler/CreationDialogPropertiesCreationHandler.php index 6d3233db63..dc47e42469 100644 --- a/Classes/NodeCreationHandler/CreationDialogPropertiesCreationHandler.php +++ b/Classes/NodeCreationHandler/CreationDialogPropertiesCreationHandler.php @@ -23,6 +23,7 @@ * Generic creation dialog node creation handler that iterates * properties that are configured to appear in the Creation Dialog (via "ui.showInCreationDialog" setting) * and sets the initial property values accordingly + * @internal */ class CreationDialogPropertiesCreationHandler implements NodeCreationHandlerInterface { diff --git a/Classes/NodeCreationHandler/DocumentTitleNodeCreationHandler.php b/Classes/NodeCreationHandler/DocumentTitleNodeCreationHandler.php index 1bba052b23..8efe069f2f 100644 --- a/Classes/NodeCreationHandler/DocumentTitleNodeCreationHandler.php +++ b/Classes/NodeCreationHandler/DocumentTitleNodeCreationHandler.php @@ -30,6 +30,7 @@ * * Note: This is not actually a Command Handler in the sense of CQRS but rather some kind of * "command enricher" + * @internal */ class DocumentTitleNodeCreationHandler implements NodeCreationHandlerInterface { diff --git a/Classes/NodeCreationHandler/NodeCreationHandlerInterface.php b/Classes/NodeCreationHandler/NodeCreationHandlerInterface.php index db64c184da..b51ed2c408 100644 --- a/Classes/NodeCreationHandler/NodeCreationHandlerInterface.php +++ b/Classes/NodeCreationHandler/NodeCreationHandlerInterface.php @@ -17,6 +17,7 @@ /** * Contract for Node Creation handler that allow to hook into the process just before a node is being added * via the Neos UI + * @api */ interface NodeCreationHandlerInterface { diff --git a/Classes/Service/NodeClipboard.php b/Classes/Service/NodeClipboard.php index e8d361002a..ad802b7be3 100644 --- a/Classes/Service/NodeClipboard.php +++ b/Classes/Service/NodeClipboard.php @@ -18,6 +18,7 @@ * This is a container for clipboard state that needs to be persisted server side * * @Flow\Scope("session") + * @internal */ class NodeClipboard { diff --git a/Classes/Service/NodePropertyValidationService.php b/Classes/Service/NodePropertyValidationService.php index 228e00bb88..200ba9bb5d 100644 --- a/Classes/Service/NodePropertyValidationService.php +++ b/Classes/Service/NodePropertyValidationService.php @@ -22,6 +22,7 @@ /** * @Flow\Scope("singleton") + * @internal */ class NodePropertyValidationService { diff --git a/Classes/Service/PublishingService.php b/Classes/Service/PublishingService.php index 36595ca7f4..d6822643a3 100644 --- a/Classes/Service/PublishingService.php +++ b/Classes/Service/PublishingService.php @@ -25,6 +25,7 @@ * * @api * @Flow\Scope("singleton") + * @internal */ class PublishingService { diff --git a/Classes/TypeConverter/ChangeCollectionConverter.php b/Classes/TypeConverter/ChangeCollectionConverter.php index 1d1d24f9ce..ff0eb0a6db 100644 --- a/Classes/TypeConverter/ChangeCollectionConverter.php +++ b/Classes/TypeConverter/ChangeCollectionConverter.php @@ -30,6 +30,7 @@ * An Object Converter for ChangeCollections. * * @Flow\Scope("singleton") + * @internal */ class ChangeCollectionConverter { diff --git a/Classes/View/OutOfBandRenderingCapable.php b/Classes/View/OutOfBandRenderingCapable.php index 31cb7a5809..f42c2b78af 100644 --- a/Classes/View/OutOfBandRenderingCapable.php +++ b/Classes/View/OutOfBandRenderingCapable.php @@ -18,6 +18,7 @@ /** * The interface for views capable of out-of-band rendering by accepting string serialized entry points + * @internal experimental */ interface OutOfBandRenderingCapable { diff --git a/Classes/View/OutOfBandRenderingFusionView.php b/Classes/View/OutOfBandRenderingFusionView.php index 9b41fdc63b..cbe0d5b297 100644 --- a/Classes/View/OutOfBandRenderingFusionView.php +++ b/Classes/View/OutOfBandRenderingFusionView.php @@ -18,6 +18,7 @@ /** * A Fusion view capable of out-of-band rendering + * @internal */ class OutOfBandRenderingFusionView extends FusionView implements OutOfBandRenderingCapable { diff --git a/Classes/View/OutOfBandRenderingViewFactory.php b/Classes/View/OutOfBandRenderingViewFactory.php index 23f0620dc4..682f5000ab 100644 --- a/Classes/View/OutOfBandRenderingViewFactory.php +++ b/Classes/View/OutOfBandRenderingViewFactory.php @@ -17,6 +17,9 @@ use Neos\Flow\Mvc\View\AbstractView; use Neos\Flow\Annotations as Flow; +/** + * @internal + */ class OutOfBandRenderingViewFactory { /**