Passed
Push — master ( f8109b...16b59d )
by Rodrigo
01:35
created
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.