Skip to content

Commit 6bdbd37

Browse files
committed
Rename MariaDB to MariaDb
1 parent c98caa3 commit 6bdbd37

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

examples/memory/mariadb.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use Symfony\AI\Platform\Bridge\OpenAi\PlatformFactory;
2020
use Symfony\AI\Platform\Message\Message;
2121
use Symfony\AI\Platform\Message\MessageBag;
22-
use Symfony\AI\Store\Bridge\MariaDB\Store;
22+
use Symfony\AI\Store\Bridge\MariaDb\Store;
2323
use Symfony\AI\Store\Document\Metadata;
2424
use Symfony\AI\Store\Document\TextDocument;
2525
use Symfony\AI\Store\Document\Vectorizer;

examples/rag/mariadb-gemini.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
use Symfony\AI\Platform\Bridge\Gemini\PlatformFactory;
2323
use Symfony\AI\Platform\Message\Message;
2424
use Symfony\AI\Platform\Message\MessageBag;
25-
use Symfony\AI\Store\Bridge\MariaDB\Store;
25+
use Symfony\AI\Store\Bridge\MariaDb\Store;
2626
use Symfony\AI\Store\Document\Metadata;
2727
use Symfony\AI\Store\Document\TextDocument;
2828
use Symfony\AI\Store\Document\Vectorizer;

examples/rag/mariadb-openai.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
use Symfony\AI\Platform\Bridge\OpenAi\PlatformFactory;
2222
use Symfony\AI\Platform\Message\Message;
2323
use Symfony\AI\Platform\Message\MessageBag;
24-
use Symfony\AI\Store\Bridge\MariaDB\Store;
24+
use Symfony\AI\Store\Bridge\MariaDb\Store;
2525
use Symfony\AI\Store\Document\Metadata;
2626
use Symfony\AI\Store\Document\TextDocument;
2727
use Symfony\AI\Store\Document\Vectorizer;

src/store/src/Bridge/MariaDB/Store.php renamed to src/store/src/Bridge/MariaDb/Store.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\AI\Store\Bridge\MariaDB;
12+
namespace Symfony\AI\Store\Bridge\MariaDb;
1313

1414
use Doctrine\DBAL\Connection;
1515
use Doctrine\DBAL\Exception as DBALException;
@@ -23,7 +23,7 @@
2323
use Symfony\Component\Uid\Uuid;
2424

2525
/**
26-
* Requires MariaDB >=11.7.
26+
* Requires MariaDb >=11.7.
2727
*
2828
* @see https://mariadb.org/rag-with-mariadb-vector/
2929
*

src/store/tests/Bridge/MariaDB/StoreTest.php renamed to src/store/tests/Bridge/MariaDb/StoreTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\AI\Store\Tests\Bridge\MariaDB;
12+
namespace Symfony\AI\Store\Tests\Bridge\MariaDb;
1313

1414
use PHPUnit\Framework\Attributes\CoversClass;
1515
use PHPUnit\Framework\TestCase;
1616
use Symfony\AI\Platform\Vector\Vector;
17-
use Symfony\AI\Store\Bridge\MariaDB\Store;
17+
use Symfony\AI\Store\Bridge\MariaDb\Store;
1818
use Symfony\AI\Store\Document\VectorDocument;
1919
use Symfony\Component\Uid\Uuid;
2020

0 commit comments

Comments
 (0)