We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b5386 commit 64cd4bfCopy full SHA for 64cd4bf
user_guide_src/source/testing/benchmark/007.php
@@ -2,12 +2,6 @@
2
3
$iterator = new \CodeIgniter\Debug\Iterator();
4
5
-// Add a new task
6
-$iterator->add('single_concat', static function () {
7
- $str = 'Some basiclittlestring concatenation test.';
8
-});
9
-
10
-// Add another task
11
-$iterator->add('double', static function ($a = 'little') {
12
- $str = "Some basic {$little} string test.";
+$iterator->add('double', static function ($word = 'little') {
+ "Some basic {$word} string test.";
13
});
0 commit comments