Issue #2998769 by kiamlaluno, quietone, kkalaskar: @see directive used in the wrong place outputs the wrong HTML markup

8.7.x
Alex Pott 2019-01-13 22:28:05 +00:00
parent 0d2afd2960
commit 6d98f6bf36
No known key found for this signature in database
GPG Key ID: 31905460D4A69276
1 changed files with 5 additions and 4 deletions

View File

@ -12,10 +12,9 @@ interface LogMessageParserInterface {
* *
* For a value to be considered as a placeholder should be in the following * For a value to be considered as a placeholder should be in the following
* formats: * formats:
* - PSR3 format: * - @link https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#12-message The PSR3 format @endlink
* @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#12-message * - The Drupal specific string placeholder format, described in
* - Drupal specific string placeholder format: * \Drupal\Component\Render\FormattableMarkup
* @see \Drupal\Component\Render\FormattableMarkup
* *
* Values in PSR3 format will be transformed to * Values in PSR3 format will be transformed to
* \Drupal\Component\Render\FormattableMarkup format. * \Drupal\Component\Render\FormattableMarkup format.
@ -29,6 +28,8 @@ interface LogMessageParserInterface {
* *
* @return array * @return array
* An array of the extracted message placeholders. * An array of the extracted message placeholders.
*
* @see \Drupal\Component\Render\FormattableMarkup
*/ */
public function parseMessagePlaceholders(&$message, array &$context); public function parseMessagePlaceholders(&$message, array &$context);