diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-02-05 14:36:28 -0800 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-02-05 14:36:43 -0800 |
commit | f269f4e398837bd8ce6f0c16313b13575f002dfc (patch) | |
tree | ac67263de3217b71a7f8a933f5bf6c9116bbd9d0 /app/Core | |
parent | bab2fb3899cc243e2f67ccf787f3657b250f6e61 (diff) |
Remove t() from PHPdoc example to avoid confusion
Diffstat (limited to 'app/Core')
-rw-r--r-- | app/Core/ExternalLink/ExternalLinkProviderInterface.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Core/ExternalLink/ExternalLinkProviderInterface.php b/app/Core/ExternalLink/ExternalLinkProviderInterface.php index c908e1eb..961252ea 100644 --- a/app/Core/ExternalLink/ExternalLinkProviderInterface.php +++ b/app/Core/ExternalLink/ExternalLinkProviderInterface.php @@ -32,10 +32,10 @@ interface ExternalLinkProviderInterface * Example: * * [ - * 'related' => t('Related'), - * 'child' => t('Child'), - * 'parent' => t('Parent'), - * 'self' => t('Self'), + * 'related' => 'Related', + * 'child' => 'Child', + * 'parent' => 'Parent', + * 'self' => 'Self', * ] * * The dictionary key is saved in the database. |