Skip to content

Commit bd4f28c

Browse files
committed
style: Fix code style issues with PHP CS Fixer
- Add missing newlines at end of files - Fix spacing in anonymous class constructor
1 parent 17bb8c7 commit bd4f28c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/rag/chromadb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@
6767
);
6868
$result = $agent->call($messages);
6969

70-
echo $result->getContent().\PHP_EOL;
70+
echo $result->getContent().\PHP_EOL;

examples/rag/in-memory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@
5959
);
6060
$result = $agent->call($messages);
6161

62-
echo $result->getContent().\PHP_EOL;
62+
echo $result->getContent().\PHP_EOL;

src/ai-bundle/tests/Profiler/TraceableToolboxTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function testExecute()
5555
*/
5656
private function createToolbox(array $tools): ToolboxInterface
5757
{
58-
return new class ($tools) implements ToolboxInterface {
58+
return new class($tools) implements ToolboxInterface {
5959
public function __construct(
6060
private readonly array $tools,
6161
) {

0 commit comments

Comments
 (0)