We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a67cf84 commit 2bef3f7Copy full SHA for 2bef3f7
1 file changed
src/ChromaDB.php
@@ -6,6 +6,14 @@
6
7
class ChromaDB
8
{
9
+ /**
10
+ * Creates a new factory instance to configure a custom ChromaDB Client
11
+ */
12
+ public static function factory(): Factory
13
+ {
14
+ return new Factory();
15
+ }
16
+
17
/**
18
* @deprecated Use ChromaDB::local()->connect() or ChromaDB::factory()->connect() instead.
19
*/
@@ -38,14 +46,6 @@ public static function local(
38
46
return $factory;
39
47
}
40
48
41
- /**
42
- * Creates a new factory instance to configure a custom ChromaDB Client
43
- */
44
- public static function factory(): Factory
45
- {
- return new Factory();
- }
-
49
50
* Creates a new factory instance configured for Chroma Cloud.
51
0 commit comments