Passed
Push — master ( 16b59d...9e5245 )
by Rodrigo
02:08
created
src/HtmlChart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 			}';
60 60
 
61 61
         $view = $this->getView();
62
-        $view->registerJsFile('https://www.google.com/jsapi',['position' => View::POS_HEAD]);
62
+        $view->registerJsFile('https://www.google.com/jsapi', ['position' => View::POS_HEAD]);
63 63
         $view->registerJs('google.load("visualization", "' . $this->loadVersion . '", {packages:["' . $this->packages . '"]});', View::POS_HEAD, __CLASS__ . '#' . $id);
64 64
         $view->registerJs($script, View::POS_HEAD, $id);
65 65
     }
Please login to merge, or discard this patch.
src/GoogleChart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         $data = array(['label_0', $this->title]);
52 52
         
53
-        foreach($this->dataProvider->models as $model){
53
+        foreach ($this->dataProvider->models as $model) {
54 54
             $data [] = [
55 55
                 strip_tags(array_shift($model)),
56 56
                 array_shift($model)
Please login to merge, or discard this patch.
src/ChartPizza.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 
6 6
 class ChartPizza extends GoogleChart
7 7
 {
8
-   public $visualization = 'PieChart';
8
+    public $visualization = 'PieChart';
9 9
 }
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
src/ChartPie.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 
6 6
 class ChartPie extends GoogleChart
7 7
 {
8
-   public $visualization = 'PieChart';
8
+    public $visualization = 'PieChart';
9 9
 }
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
src/ColumnChart.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 
6 6
 class ColumnChart extends GoogleChart
7 7
 {
8
-   public $visualization = 'ColumnChart';
8
+    public $visualization = 'ColumnChart';
9 9
 }
Please login to merge, or discard this patch.