Skip to content

Commit efe4734

Browse files
authored
Merge pull request #12 from julles/analysis-z39AZr
Apply fixes from StyleCI
2 parents c33dd36 + dde1cf0 commit efe4734

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Classes/Presenters/ChartPresenter.php

+1
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ public function colors($series = [])
130130
public function credits($credits = [])
131131
{
132132
$this->transform->credits = $credits;
133+
133134
return $this;
134135
}
135136

src/Classes/Presenters/JsTransformerPresenter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function encode_colors()
104104
public function credits()
105105
{
106106
$data = $this->credits;
107-
$this->credits = !empty($data)? 'credits: '.json_encode($data, JSON_UNESCAPED_UNICODE).',' : null;
107+
$this->credits = !empty($data) ? 'credits: '.json_encode($data, JSON_UNESCAPED_UNICODE).',' : null;
108108

109109
return $this;
110110
}

0 commit comments

Comments
 (0)