Skip to content
This repository was archived by the owner on Feb 28, 2026. It is now read-only.
Open
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
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "comodojo/dispatcher-bundle",
"name": "pmarcelli/dispatcher-bundle",
"description": "Dispatcher 4.X default bundle",
"type": "comodojo-bundle",
"license": "MIT",
Expand All @@ -14,8 +14,8 @@
}
},
"require": {
"comodojo/dispatcher.framework": "dev-master",
"comodojo/comodojo-installer": "dev-master"
"pmarcelli/dispatcher.framework": "dev-dispatcher-framework_u7320",
"pmarcelli/comodojo-installer": "dev-comodojo-installer_u7320"
},
"extra": {
"commands": [
Expand Down
3 changes: 3 additions & 0 deletions src/Comodojo/Dispatcher/Commands/CacheClear.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ protected function execute(InputInterface $input, OutputInterface $output) {
$manager->clear();
$output->write('done!');
$output->writeln('');

//PHP Fatal error: Uncaught TypeError: Return value of "Comodojo\Dispatcher\Commands\CacheClear::execute()" must be of the type int, "null" returned
return 0;

}

Expand Down
2 changes: 2 additions & 0 deletions src/Comodojo/Dispatcher/Commands/CacheStats.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ protected function execute(InputInterface $input, OutputInterface $output) {
foreach ($stats as $stat) {
self::printStats($stat, $output);
}

return 0;

}

Expand Down
2 changes: 2 additions & 0 deletions src/Comodojo/Dispatcher/Commands/Info.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ protected function execute(InputInterface $input, OutputInterface $output) {
$version->getDescription(),
'-----------------------------'
]);

return 0;

}

Expand Down