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 09e5cfe commit 49d40d8Copy full SHA for 49d40d8
src/Storage.php
@@ -30,14 +30,16 @@ interface Storage
30
public function get($locale, $domain, $key);
31
32
/**
33
- * Update a translation.
+ * Update a translation. Creates a translation if there is none to update.
34
*
35
* @param Message $message
36
*/
37
public function update(Message $message);
38
39
40
- * Remove a translation from the storage.
+ * Remove a translation from the storage. If the storage implementation makes
41
+ * a difference between translations and assets then this function MUST only
42
+ * remove the translation.
43
44
* @param string $locale
45
* @param string $domain
0 commit comments