From 9ee04d701c5c9a8d1ff405c9fa9ef60561c863ec Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Mon, 16 Jun 2014 08:48:26 +1000 Subject: [PATCH] Minor --- modules/system/classes/PluginBase.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/system/classes/PluginBase.php b/modules/system/classes/PluginBase.php index 56f41f661..61959bd6b 100644 --- a/modules/system/classes/PluginBase.php +++ b/modules/system/classes/PluginBase.php @@ -78,13 +78,14 @@ abstract class PluginBase extends ServiceProviderBase /** * Registers any report widgets provided by this plugin. * The widgets must be returned in the following format: - * ['className1'=>[ - * 'name'=>'My widget 1', - * 'context'=>['context-1', 'context-2'], + * [ + * 'className1'=>[ + * 'name' => 'My widget 1', + * 'context' => ['context-1', 'context-2'], * ], - * 'className2'=>[ - * 'name'=>'My widget 2', - * 'context'=>'context-1' + * 'className2' => [ + * 'name' => 'My widget 2', + * 'context' => 'context-1' * ] * ] */