Skip to content

Commit 8d5c09b

Browse files
committed
wip
1 parent 16247bc commit 8d5c09b

File tree

4 files changed

+2
-7
lines changed

4 files changed

+2
-7
lines changed

system/Commands/Worker/Views/Caddyfile.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
# Number of workers (default: 2x CPU cores)
1717
# Adjust based on your server capacity
18-
num 16
18+
# num 16
1919
}
2020
}
2121

system/Commands/Worker/WorkerInstall.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,5 @@ protected function showNextSteps(): void
134134
CLI::write('2. Test your application:', 'white');
135135
CLI::write(' curl http://localhost:8080/', 'green');
136136
CLI::newLine();
137-
138-
CLI::write('Documentation:', 'yellow');
139-
CLI::write(' https://frankenphp.dev/docs/worker/', 'blue');
140-
CLI::newLine();
141137
}
142138
}

tests/system/Commands/WorkerCommandsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function testWorkerInstallShowsNextSteps(): void
100100
$output = $this->getStreamFilterBuffer();
101101
$this->assertStringContainsString('Next Steps:', $output);
102102
$this->assertStringContainsString('frankenphp run', $output);
103-
$this->assertStringContainsString('https://frankenphp.dev/docs/worker/', $output);
103+
$this->assertStringContainsString('http://localhost:8080/', $output);
104104
}
105105

106106
public function testWorkerUninstallRemovesFiles(): void

user_guide_src/source/changelogs/v4.7.0.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ Libraries
275275
- **Time:** Added ``Time::isPast()`` and ``Time::isFuture()`` convenience methods. See :ref:`isPast <time-comparing-two-times-isPast>` and :ref:`isFuture <time-comparing-two-times-isFuture>` for details.
276276
- **Toolbar:** Fixed an issue where the Debug Toolbar was incorrectly injected into responses generated by third-party libraries (e.g., Dompdf) that use native PHP headers instead of the framework's Response object.
277277
- **View:** Added the ability to override namespaced views (e.g., from modules/packages) by placing a matching file structure within the **app/Views/overrides** directory. See :ref:`Overriding Namespaced Views <views-overriding-namespaced-views>` for details.
278-
- **Worker Mode:** Added experimental FrankenPHP Worker Mode support, allowing CodeIgniter to handle multiple HTTP requests within the same PHP process for 2-3x performance improvements. See :doc:`Worker Mode </installation/worker_mode>` for details.
279278

280279
Commands
281280
========

0 commit comments

Comments
 (0)