objectManager = $objectManager; } /** * Create a message instance of a given type with given text. * * @param string|null $type The message type to create, must correspond to a message type under the * namespace Magento\Framework\Message\ * @param string $text The text to inject into the message * @throws \InvalidArgumentException Exception gets thrown if type does not correspond to a valid Magento message * @return MessageInterface */ public function create($type, $text = null) { if (!in_array($type, $this->types)) { throw new \InvalidArgumentException('Wrong message type'); } $className = 'Magento\\Framework\\Message\\' . ucfirst($type); $message = $this->objectManager->create($className, $text === null ? [] : ['text' => $text]); if (!$message instanceof MessageInterface) { throw new \InvalidArgumentException($className . ' doesn\'t implement \Magento\Framework\Message\MessageInterface'); } return $message; } }