Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Nov 24, 2023
1 parent 441f912 commit ac4843e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## Unreleased
## 3.10.0 - 2023-11-24

- **Other Features**
- [spiral/boot] Added `Spiral\Boot\Bootloader\BootloaderRegistryInterface` and `Spiral\Boot\Bootloader\BootloaderRegistry`
Expand Down
21 changes: 21 additions & 0 deletions foo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

function join_three_words($word1, $word2, $word3): string
{
return $word1 . ' ' . $word2 . ' ' . $word3;
}

$a = 'Hello';
$b = 'world';

$c = 'John';
$d = 'Doe';

$e = 'John';
$f = 'Doe';

echo \sprintf(
'%s %s',
$a,
join_three_words($b, $c, join_three_words($d, $e, $f))
); // Hello world John Doe John Doe

0 comments on commit ac4843e

Please sign in to comment.