Skip to content

Commit 79025a2

Browse files
Add detailed documentation
1 parent c47d230 commit 79025a2

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/Adapter/Util.php

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,19 @@
1616
abstract class Util
1717
{
1818
/**
19-
* Finds all adapter references in a value string.
19+
* Finds all adapter references in a value string
2020
*
21-
* @param string $value
21+
* 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
2232
* @return array
2333
*/
2434
public static function getAdapterReplacements(string $value) : array

0 commit comments

Comments
 (0)