Skip to content

Commit

Permalink
TASK: Flow doesnt know about list type
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Oct 20, 2023
1 parent 1fab944 commit b271053
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Classes/Controller/BackendServiceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public function publishAllAction(): void
/**
* Publish nodes
*
* @param list<string> $nodeContextPaths
* @psalm-param list<string> $nodeContextPaths
*/
public function publishAction(array $nodeContextPaths, string $targetWorkspaceName): void
{
Expand Down Expand Up @@ -257,7 +257,7 @@ public function publishAction(array $nodeContextPaths, string $targetWorkspaceNa
/**
* Discard nodes
*
* @param list<string> $nodeContextPaths
* @psalm-param list<string> $nodeContextPaths
*/
public function discardAction(array $nodeContextPaths): void
{
Expand Down Expand Up @@ -406,7 +406,7 @@ public function changeBaseWorkspaceAction(string $targetWorkspaceName, string $d
/**
* Persists the clipboard node on copy
*
* @param list<string> $nodes
* @psalm-param list<string> $nodes
* @return void
* @throws \Neos\Flow\Property\Exception
* @throws \Neos\Flow\Security\Exception
Expand Down Expand Up @@ -438,7 +438,7 @@ public function clearClipboardAction()
/**
* Persists the clipboard node on cut
*
* @param list<string> $nodes
* @psalm-param list<string> $nodes
* @throws \Neos\Flow\Property\Exception
* @throws \Neos\Flow\Security\Exception
*/
Expand Down Expand Up @@ -476,7 +476,7 @@ public function initializeGetAdditionalNodeMetadataAction(): void

/**
* Fetches all the node information that can be lazy-loaded
* @param list<string> $nodes
* @psalm-param list<string> $nodes
*/
public function getAdditionalNodeMetadataAction(array $nodes): void
{
Expand Down Expand Up @@ -559,7 +559,7 @@ public function getPolicyInformationAction(array $nodes): void
/**
* Build and execute a flow query chain
*
* @param list<array{type: string, payload: array<string|int, mixed>}> $chain
* @psalm-param list<array{type: string, payload: array<string|int, mixed>}> $chain
*/
public function flowQueryAction(array $chain): string
{
Expand Down

0 comments on commit b271053

Please sign in to comment.