Skip to content

Commit d899633

Browse files
Fixed command for caceh (there is no neos. prefix)
1 parent 64b03ee commit d899633

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/task/cache/Flush.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct(public bool $force = false,
2222
}
2323

2424
public function getCommand() : string {
25-
return 'neos.flow:cache:flush';
25+
return 'flow:cache:flush';
2626
}
2727

2828
public function getArguments() : array {

test/task/cache/FlushTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ public function testGetArguments_withForce() : void {
5252
}
5353

5454
public function testGetCommand() : void {
55-
self::assertEquals('neos.flow:cache:flush', $this->sut->getCommand());
55+
self::assertEquals('flow:cache:flush', $this->sut->getCommand());
5656
}
5757
}

0 commit comments

Comments
 (0)