| 1 | <?php | ||
| 8 | trait MessageInterpolationTrait | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * Interpolates context values into the message placeholders. | ||
| 12 | * | ||
| 13 | * @link https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#12-message | ||
| 14 | * | ||
| 15 | * @param string $message The string containing the placeholders. | ||
| 16 | * @param array $context The key/value array of replacement values. | ||
| 17 | * | ||
| 18 | * @return string | ||
| 19 | */ | ||
| 20 | protected function interpolateMessage($message, array $context)//@codingStandardsIgnoreLine Ignore missing type hint | ||
| 38 | } | ||
| 39 |