From 74b97c76946bc331e3cf6b7d7658dd334bf3d61c Mon Sep 17 00:00:00 2001 From: Mark Story Date: Wed, 4 Feb 2015 20:50:15 -0500 Subject: [PATCH] Fix PHPCS errors. --- src/Controller/Component/FlashComponent.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Controller/Component/FlashComponent.php b/src/Controller/Component/FlashComponent.php index b1cbc96af37..2bd8fd2e59b 100644 --- a/src/Controller/Component/FlashComponent.php +++ b/src/Controller/Component/FlashComponent.php @@ -105,11 +105,11 @@ public function set($message, array $options = []) * For example: $this->Flash->success('My message') would use the * success.ctp element under `src/Template/Element/Flash` for rendering the * flash message. - * + * * Note that the parameter `element` will be always overridden. In order to call a * specific element from a plugin, you should set the `plugin` option in $args. - * - * For example: $this->Flash->warning('My message', ['plugin' => 'PluginName']) would + * + * For example: `$this->Flash->warning('My message', ['plugin' => 'PluginName'])` would * use the warning.ctp element under `plugins/PluginName/src/Template/Element/Flash` for * rendering the flash message. *