We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c47d230 commit 79025a2Copy full SHA for 79025a2
src/Adapter/Util.php
@@ -16,9 +16,19 @@
16
abstract class Util
17
{
18
/**
19
- * Finds all adapter references in a value string.
+ * Finds all adapter references in a value string
20
*
21
- * @param string $value
+ * This returns a list of all found adapter references in an array like:
22
+ * [
23
24
+ * 'search' => 'adapter:name:path',
25
+ * 'adapter' => 'name',
26
+ * 'path' => 'path'
27
+ * ],
28
+ * ...
29
+ * ]
30
+ *
31
+ * @param string $value
32
* @return array
33
*/
34
public static function getAdapterReplacements(string $value) : array
0 commit comments