Skip to content

Commit b1dc740

Browse files
committed
minor #62 fix: test location and codestyle (chr-hertel)
This PR was merged into the main branch. Discussion ---------- fix: test location and codestyle | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | | License | MIT Cleaning up after #46 Commits ------- 4cce670 fix: test location and codestyle
2 parents 21b8a32 + 4cce670 commit b1dc740

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
(new PhpCsFixer\Finder())
4545
->in([__DIR__.'/demo', __DIR__.'/examples', __DIR__.'/fixtures', __DIR__.'/src'])
4646
->append([__FILE__])
47-
->notPath('#/Fixtures/#')
47+
->exclude(__DIR__.'/demo/var')
4848
)
4949
;

src/mcp-sdk/tests/Fixtures/InMemoryTransport.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22

3-
4-
53
/*
64
* This file is part of the Symfony package.
75
*

tests/Platform/Bridge/Google/Embeddings/EmbeddingsModelClientTest.php renamed to src/platform/tests/Bridge/Google/Embeddings/EmbeddingsModelClientTest.php

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
<?php
22

3-
declare(strict_types=1);
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
411

5-
namespace PhpLlm\LlmChain\Tests\Platform\Bridge\Google\Embeddings;
12+
namespace Symfony\AI\Platform\Tests\Bridge\Google\Embeddings;
613

7-
use PhpLlm\LlmChain\Platform\Bridge\Google\Embeddings;
8-
use PhpLlm\LlmChain\Platform\Bridge\Google\Embeddings\ModelClient;
9-
use PhpLlm\LlmChain\Platform\Response\VectorResponse;
10-
use PhpLlm\LlmChain\Platform\Vector\Vector;
1114
use PHPUnit\Framework\Attributes\CoversClass;
1215
use PHPUnit\Framework\Attributes\Small;
1316
use PHPUnit\Framework\Attributes\Test;
1417
use PHPUnit\Framework\Attributes\UsesClass;
1518
use PHPUnit\Framework\TestCase;
19+
use Symfony\AI\Platform\Bridge\Google\Embeddings;
20+
use Symfony\AI\Platform\Bridge\Google\Embeddings\ModelClient;
21+
use Symfony\AI\Platform\Response\VectorResponse;
22+
use Symfony\AI\Platform\Vector\Vector;
1623
use Symfony\Contracts\HttpClient\HttpClientInterface;
1724
use Symfony\Contracts\HttpClient\ResponseInterface;
1825

0 commit comments

Comments
 (0)