GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#61)
by halfpastfour
02:46
created
src/DataSet/RadarDataSet.php 1 patch
Indentation   +399 added lines, -399 removed lines patch added patch discarded remove patch
@@ -10,403 +10,403 @@
 block discarded – undo
10 10
  */
11 11
 class RadarDataSet extends DataSet
12 12
 {
13
-    /**
14
-     * @var bool
15
-     */
16
-    protected $fill;
17
-
18
-    /**
19
-     * @var float
20
-     */
21
-    protected $lineTension;
22
-
23
-    /**
24
-     * @var string
25
-     */
26
-    protected $borderCapStyle;
27
-
28
-    /**
29
-     * @var int[]
30
-     */
31
-    protected $borderDash;
32
-
33
-    /**
34
-     * @var int
35
-     */
36
-    protected $borderDashOffset;
37
-
38
-    /**
39
-     * @var string
40
-     */
41
-    protected $borderJoinStyle;
42
-
43
-    /**
44
-     * @var string|string[]
45
-     */
46
-    protected $pointBorderColor;
47
-
48
-    /**
49
-     * @var string|string[]
50
-     */
51
-    protected $pointBackgroundColor;
52
-
53
-    /**
54
-     * @var int|int[]
55
-     */
56
-    protected $pointBorderWidth;
57
-
58
-    /**
59
-     * @var int|int[]
60
-     */
61
-    protected $pointRadius;
62
-
63
-    /**
64
-     * @var int|int[]
65
-     */
66
-    protected $pointHoverRadius;
67
-
68
-    /**
69
-     * @var int|int[]
70
-     */
71
-    protected $hitRadius;
72
-
73
-    /**
74
-     * @var string|string[]
75
-     */
76
-    protected $pointHoverBackgroundColor;
77
-
78
-    /**
79
-     * @var string|string[]
80
-     */
81
-    protected $pointHoverBorderColor;
82
-
83
-    /**
84
-     * @var int|int[]
85
-     */
86
-    protected $pointHoverBorderWidth;
87
-
88
-    /**
89
-     * @var string|string[]
90
-     */
91
-    protected $pointStyle;
92
-
93
-    /**
94
-     * @return bool
95
-     */
96
-    public function isFill()
97
-    {
98
-        return $this->fill;
99
-    }
100
-
101
-    /**
102
-     * @param bool $fill
103
-     *
104
-     * @return $this
105
-     */
106
-    public function setFill($fill)
107
-    {
108
-        $this->fill = $fill;
109
-
110
-        return $this;
111
-    }
112
-
113
-    /**
114
-     * @return int
115
-     */
116
-    public function getLineTension()
117
-    {
118
-        return $this->lineTension;
119
-    }
120
-
121
-    /**
122
-     * @param float $lineTension
123
-     *
124
-     * @return $this
125
-     */
126
-    public function setLineTension($lineTension)
127
-    {
128
-        $this->lineTension = $lineTension;
129
-
130
-        return $this;
131
-    }
132
-
133
-    /**
134
-     * @return string
135
-     */
136
-    public function getBorderCapStyle()
137
-    {
138
-        return $this->borderCapStyle;
139
-    }
140
-
141
-    /**
142
-     * @param string $borderCapStyle
143
-     *
144
-     * @return $this
145
-     */
146
-    public function setBorderCapStyle($borderCapStyle)
147
-    {
148
-        $this->borderCapStyle = $borderCapStyle;
149
-
150
-        return $this;
151
-    }
152
-
153
-    /**
154
-     * @return int[]
155
-     */
156
-    public function getBorderDash()
157
-    {
158
-        return $this->borderDash;
159
-    }
160
-
161
-    /**
162
-     * @param int[] $borderDash
163
-     *
164
-     * @return $this
165
-     */
166
-    public function setBorderDash($borderDash)
167
-    {
168
-        $this->borderDash = $borderDash;
169
-
170
-        return $this;
171
-    }
172
-
173
-    /**
174
-     * @return int
175
-     */
176
-    public function getBorderDashOffset()
177
-    {
178
-        return $this->borderDashOffset;
179
-    }
180
-
181
-    /**
182
-     * @param int $borderDashOffset
183
-     *
184
-     * @return $this
185
-     */
186
-    public function setBorderDashOffset($borderDashOffset)
187
-    {
188
-        $this->borderDashOffset = $borderDashOffset;
189
-
190
-        return $this;
191
-    }
192
-
193
-    /**
194
-     * @return string
195
-     */
196
-    public function getBorderJoinStyle()
197
-    {
198
-        return $this->borderJoinStyle;
199
-    }
200
-
201
-    /**
202
-     * @param string $borderJoinStyle
203
-     *
204
-     * @return $this
205
-     */
206
-    public function setBorderJoinStyle($borderJoinStyle)
207
-    {
208
-        $this->borderJoinStyle = $borderJoinStyle;
209
-
210
-        return $this;
211
-    }
212
-
213
-    /**
214
-     * @return string|string[]
215
-     */
216
-    public function getPointBorderColor()
217
-    {
218
-        return $this->pointBorderColor;
219
-    }
220
-
221
-    /**
222
-     * @param string|string[] $pointBorderColor
223
-     *
224
-     * @return $this
225
-     */
226
-    public function setPointBorderColor($pointBorderColor)
227
-    {
228
-        $this->pointBorderColor = $pointBorderColor;
229
-
230
-        return $this;
231
-    }
232
-
233
-    /**
234
-     * @return string|string[]
235
-     */
236
-    public function getPointBackgroundColor()
237
-    {
238
-        return $this->pointBackgroundColor;
239
-    }
240
-
241
-    /**
242
-     * @param string|string[] $pointBackgroundColor
243
-     *
244
-     * @return $this
245
-     */
246
-    public function setPointBackgroundColor($pointBackgroundColor)
247
-    {
248
-        $this->pointBackgroundColor = $pointBackgroundColor;
249
-
250
-        return $this;
251
-    }
252
-
253
-    /**
254
-     * @return int|int[]
255
-     */
256
-    public function getPointBorderWidth()
257
-    {
258
-        return $this->pointBorderWidth;
259
-    }
260
-
261
-    /**
262
-     * @param int|int[] $pointBorderWidth
263
-     *
264
-     * @return $this
265
-     */
266
-    public function setPointBorderWidth($pointBorderWidth)
267
-    {
268
-        $this->pointBorderWidth = $pointBorderWidth;
269
-
270
-        return $this;
271
-    }
272
-
273
-    /**
274
-     * @return int|int[]
275
-     */
276
-    public function getPointRadius()
277
-    {
278
-        return $this->pointRadius;
279
-    }
280
-
281
-    /**
282
-     * @param int|int[] $pointRadius
283
-     *
284
-     * @return $this
285
-     */
286
-    public function setPointRadius($pointRadius)
287
-    {
288
-        $this->pointRadius = $pointRadius;
289
-
290
-        return $this;
291
-    }
292
-
293
-    /**
294
-     * @return int|int[]
295
-     */
296
-    public function getPointHoverRadius()
297
-    {
298
-        return $this->pointHoverRadius;
299
-    }
300
-
301
-    /**
302
-     * @param int|int[] $pointHoverRadius
303
-     *
304
-     * @return $this
305
-     */
306
-    public function setPointHoverRadius($pointHoverRadius)
307
-    {
308
-        $this->pointHoverRadius = $pointHoverRadius;
309
-
310
-        return $this;
311
-    }
312
-
313
-    /**
314
-     * @return int|int[]
315
-     */
316
-    public function getHitRadius()
317
-    {
318
-        return $this->hitRadius;
319
-    }
320
-
321
-    /**
322
-     * @param int|int[] $hitRadius
323
-     *
324
-     * @return $this
325
-     */
326
-    public function setHitRadius($hitRadius)
327
-    {
328
-        $this->hitRadius = $hitRadius;
329
-
330
-        return $this;
331
-    }
332
-
333
-    /**
334
-     * @return string|string[]
335
-     */
336
-    public function getPointHoverBackgroundColor()
337
-    {
338
-        return $this->pointHoverBackgroundColor;
339
-    }
340
-
341
-    /**
342
-     * @param string|string[] $pointHoverBackgroundColor
343
-     *
344
-     * @return $this
345
-     */
346
-    public function setPointHoverBackgroundColor($pointHoverBackgroundColor)
347
-    {
348
-        $this->pointHoverBackgroundColor = $pointHoverBackgroundColor;
349
-
350
-        return $this;
351
-    }
352
-
353
-    /**
354
-     * @return string|string[]
355
-     */
356
-    public function getPointHoverBorderColor()
357
-    {
358
-        return $this->pointHoverBorderColor;
359
-    }
360
-
361
-    /**
362
-     * @param string|string[] $pointHoverBorderColor
363
-     *
364
-     * @return $this
365
-     */
366
-    public function setPointHoverBorderColor($pointHoverBorderColor)
367
-    {
368
-        $this->pointHoverBorderColor = $pointHoverBorderColor;
369
-
370
-        return $this;
371
-    }
372
-
373
-    /**
374
-     * @return int|int[]
375
-     */
376
-    public function getPointHoverBorderWidth()
377
-    {
378
-        return $this->pointHoverBorderWidth;
379
-    }
380
-
381
-    /**
382
-     * @param int|int[] $pointHoverBorderWidth
383
-     *
384
-     * @return $this
385
-     */
386
-    public function setPointHoverBorderWidth($pointHoverBorderWidth)
387
-    {
388
-        $this->pointHoverBorderWidth = $pointHoverBorderWidth;
389
-
390
-        return $this;
391
-    }
392
-
393
-    /**
394
-     * @return string|string[]
395
-     */
396
-    public function getPointStyle()
397
-    {
398
-        return $this->pointStyle;
399
-    }
400
-
401
-    /**
402
-     * @param string|string[] $pointStyle
403
-     *
404
-     * @return $this
405
-     */
406
-    public function setPointStyle($pointStyle)
407
-    {
408
-        $this->pointStyle = $pointStyle;
409
-
410
-        return $this;
411
-    }
13
+	/**
14
+	 * @var bool
15
+	 */
16
+	protected $fill;
17
+
18
+	/**
19
+	 * @var float
20
+	 */
21
+	protected $lineTension;
22
+
23
+	/**
24
+	 * @var string
25
+	 */
26
+	protected $borderCapStyle;
27
+
28
+	/**
29
+	 * @var int[]
30
+	 */
31
+	protected $borderDash;
32
+
33
+	/**
34
+	 * @var int
35
+	 */
36
+	protected $borderDashOffset;
37
+
38
+	/**
39
+	 * @var string
40
+	 */
41
+	protected $borderJoinStyle;
42
+
43
+	/**
44
+	 * @var string|string[]
45
+	 */
46
+	protected $pointBorderColor;
47
+
48
+	/**
49
+	 * @var string|string[]
50
+	 */
51
+	protected $pointBackgroundColor;
52
+
53
+	/**
54
+	 * @var int|int[]
55
+	 */
56
+	protected $pointBorderWidth;
57
+
58
+	/**
59
+	 * @var int|int[]
60
+	 */
61
+	protected $pointRadius;
62
+
63
+	/**
64
+	 * @var int|int[]
65
+	 */
66
+	protected $pointHoverRadius;
67
+
68
+	/**
69
+	 * @var int|int[]
70
+	 */
71
+	protected $hitRadius;
72
+
73
+	/**
74
+	 * @var string|string[]
75
+	 */
76
+	protected $pointHoverBackgroundColor;
77
+
78
+	/**
79
+	 * @var string|string[]
80
+	 */
81
+	protected $pointHoverBorderColor;
82
+
83
+	/**
84
+	 * @var int|int[]
85
+	 */
86
+	protected $pointHoverBorderWidth;
87
+
88
+	/**
89
+	 * @var string|string[]
90
+	 */
91
+	protected $pointStyle;
92
+
93
+	/**
94
+	 * @return bool
95
+	 */
96
+	public function isFill()
97
+	{
98
+		return $this->fill;
99
+	}
100
+
101
+	/**
102
+	 * @param bool $fill
103
+	 *
104
+	 * @return $this
105
+	 */
106
+	public function setFill($fill)
107
+	{
108
+		$this->fill = $fill;
109
+
110
+		return $this;
111
+	}
112
+
113
+	/**
114
+	 * @return int
115
+	 */
116
+	public function getLineTension()
117
+	{
118
+		return $this->lineTension;
119
+	}
120
+
121
+	/**
122
+	 * @param float $lineTension
123
+	 *
124
+	 * @return $this
125
+	 */
126
+	public function setLineTension($lineTension)
127
+	{
128
+		$this->lineTension = $lineTension;
129
+
130
+		return $this;
131
+	}
132
+
133
+	/**
134
+	 * @return string
135
+	 */
136
+	public function getBorderCapStyle()
137
+	{
138
+		return $this->borderCapStyle;
139
+	}
140
+
141
+	/**
142
+	 * @param string $borderCapStyle
143
+	 *
144
+	 * @return $this
145
+	 */
146
+	public function setBorderCapStyle($borderCapStyle)
147
+	{
148
+		$this->borderCapStyle = $borderCapStyle;
149
+
150
+		return $this;
151
+	}
152
+
153
+	/**
154
+	 * @return int[]
155
+	 */
156
+	public function getBorderDash()
157
+	{
158
+		return $this->borderDash;
159
+	}
160
+
161
+	/**
162
+	 * @param int[] $borderDash
163
+	 *
164
+	 * @return $this
165
+	 */
166
+	public function setBorderDash($borderDash)
167
+	{
168
+		$this->borderDash = $borderDash;
169
+
170
+		return $this;
171
+	}
172
+
173
+	/**
174
+	 * @return int
175
+	 */
176
+	public function getBorderDashOffset()
177
+	{
178
+		return $this->borderDashOffset;
179
+	}
180
+
181
+	/**
182
+	 * @param int $borderDashOffset
183
+	 *
184
+	 * @return $this
185
+	 */
186
+	public function setBorderDashOffset($borderDashOffset)
187
+	{
188
+		$this->borderDashOffset = $borderDashOffset;
189
+
190
+		return $this;
191
+	}
192
+
193
+	/**
194
+	 * @return string
195
+	 */
196
+	public function getBorderJoinStyle()
197
+	{
198
+		return $this->borderJoinStyle;
199
+	}
200
+
201
+	/**
202
+	 * @param string $borderJoinStyle
203
+	 *
204
+	 * @return $this
205
+	 */
206
+	public function setBorderJoinStyle($borderJoinStyle)
207
+	{
208
+		$this->borderJoinStyle = $borderJoinStyle;
209
+
210
+		return $this;
211
+	}
212
+
213
+	/**
214
+	 * @return string|string[]
215
+	 */
216
+	public function getPointBorderColor()
217
+	{
218
+		return $this->pointBorderColor;
219
+	}
220
+
221
+	/**
222
+	 * @param string|string[] $pointBorderColor
223
+	 *
224
+	 * @return $this
225
+	 */
226
+	public function setPointBorderColor($pointBorderColor)
227
+	{
228
+		$this->pointBorderColor = $pointBorderColor;
229
+
230
+		return $this;
231
+	}
232
+
233
+	/**
234
+	 * @return string|string[]
235
+	 */
236
+	public function getPointBackgroundColor()
237
+	{
238
+		return $this->pointBackgroundColor;
239
+	}
240
+
241
+	/**
242
+	 * @param string|string[] $pointBackgroundColor
243
+	 *
244
+	 * @return $this
245
+	 */
246
+	public function setPointBackgroundColor($pointBackgroundColor)
247
+	{
248
+		$this->pointBackgroundColor = $pointBackgroundColor;
249
+
250
+		return $this;
251
+	}
252
+
253
+	/**
254
+	 * @return int|int[]
255
+	 */
256
+	public function getPointBorderWidth()
257
+	{
258
+		return $this->pointBorderWidth;
259
+	}
260
+
261
+	/**
262
+	 * @param int|int[] $pointBorderWidth
263
+	 *
264
+	 * @return $this
265
+	 */
266
+	public function setPointBorderWidth($pointBorderWidth)
267
+	{
268
+		$this->pointBorderWidth = $pointBorderWidth;
269
+
270
+		return $this;
271
+	}
272
+
273
+	/**
274
+	 * @return int|int[]
275
+	 */
276
+	public function getPointRadius()
277
+	{
278
+		return $this->pointRadius;
279
+	}
280
+
281
+	/**
282
+	 * @param int|int[] $pointRadius
283
+	 *
284
+	 * @return $this
285
+	 */
286
+	public function setPointRadius($pointRadius)
287
+	{
288
+		$this->pointRadius = $pointRadius;
289
+
290
+		return $this;
291
+	}
292
+
293
+	/**
294
+	 * @return int|int[]
295
+	 */
296
+	public function getPointHoverRadius()
297
+	{
298
+		return $this->pointHoverRadius;
299
+	}
300
+
301
+	/**
302
+	 * @param int|int[] $pointHoverRadius
303
+	 *
304
+	 * @return $this
305
+	 */
306
+	public function setPointHoverRadius($pointHoverRadius)
307
+	{
308
+		$this->pointHoverRadius = $pointHoverRadius;
309
+
310
+		return $this;
311
+	}
312
+
313
+	/**
314
+	 * @return int|int[]
315
+	 */
316
+	public function getHitRadius()
317
+	{
318
+		return $this->hitRadius;
319
+	}
320
+
321
+	/**
322
+	 * @param int|int[] $hitRadius
323
+	 *
324
+	 * @return $this
325
+	 */
326
+	public function setHitRadius($hitRadius)
327
+	{
328
+		$this->hitRadius = $hitRadius;
329
+
330
+		return $this;
331
+	}
332
+
333
+	/**
334
+	 * @return string|string[]
335
+	 */
336
+	public function getPointHoverBackgroundColor()
337
+	{
338
+		return $this->pointHoverBackgroundColor;
339
+	}
340
+
341
+	/**
342
+	 * @param string|string[] $pointHoverBackgroundColor
343
+	 *
344
+	 * @return $this
345
+	 */
346
+	public function setPointHoverBackgroundColor($pointHoverBackgroundColor)
347
+	{
348
+		$this->pointHoverBackgroundColor = $pointHoverBackgroundColor;
349
+
350
+		return $this;
351
+	}
352
+
353
+	/**
354
+	 * @return string|string[]
355
+	 */
356
+	public function getPointHoverBorderColor()
357
+	{
358
+		return $this->pointHoverBorderColor;
359
+	}
360
+
361
+	/**
362
+	 * @param string|string[] $pointHoverBorderColor
363
+	 *
364
+	 * @return $this
365
+	 */
366
+	public function setPointHoverBorderColor($pointHoverBorderColor)
367
+	{
368
+		$this->pointHoverBorderColor = $pointHoverBorderColor;
369
+
370
+		return $this;
371
+	}
372
+
373
+	/**
374
+	 * @return int|int[]
375
+	 */
376
+	public function getPointHoverBorderWidth()
377
+	{
378
+		return $this->pointHoverBorderWidth;
379
+	}
380
+
381
+	/**
382
+	 * @param int|int[] $pointHoverBorderWidth
383
+	 *
384
+	 * @return $this
385
+	 */
386
+	public function setPointHoverBorderWidth($pointHoverBorderWidth)
387
+	{
388
+		$this->pointHoverBorderWidth = $pointHoverBorderWidth;
389
+
390
+		return $this;
391
+	}
392
+
393
+	/**
394
+	 * @return string|string[]
395
+	 */
396
+	public function getPointStyle()
397
+	{
398
+		return $this->pointStyle;
399
+	}
400
+
401
+	/**
402
+	 * @param string|string[] $pointStyle
403
+	 *
404
+	 * @return $this
405
+	 */
406
+	public function setPointStyle($pointStyle)
407
+	{
408
+		$this->pointStyle = $pointStyle;
409
+
410
+		return $this;
411
+	}
412 412
 }
Please login to merge, or discard this patch.
src/DataSet/LineDataSet.php 1 patch
Indentation   +499 added lines, -499 removed lines patch added patch discarded remove patch
@@ -10,503 +10,503 @@
 block discarded – undo
10 10
  */
11 11
 class LineDataSet extends DataSet
12 12
 {
13
-    /**
14
-     * @var bool|string
15
-     */
16
-    protected $fill;
17
-
18
-    /**
19
-     * @var string
20
-     */
21
-    protected $cubicInterpolationMode;
22
-
23
-    /**
24
-     * @var int
25
-     */
26
-    protected $lineTension;
27
-
28
-    /**
29
-     * @var string
30
-     */
31
-    protected $borderCapStyle;
32
-
33
-    /**
34
-     * @var array
35
-     */
36
-    protected $borderDash;
37
-
38
-    /**
39
-     * @var float
40
-     */
41
-    protected $borderDashOffset;
42
-
43
-    /**
44
-     * @var string
45
-     */
46
-    protected $borderJoinStyle;
47
-
48
-    /**
49
-     * @var string|string[]
50
-     */
51
-    protected $pointBorderColor;
52
-
53
-    /**
54
-     * @var string|string[]
55
-     */
56
-    protected $pointBackgroundColor;
57
-
58
-    /**
59
-     * @var int|int[]
60
-     */
61
-    protected $pointBorderWidth;
62
-
63
-    /**
64
-     * @var int|int[]
65
-     */
66
-    protected $pointRadius;
67
-
68
-    /**
69
-     * @var int|int[]
70
-     */
71
-    protected $pointHoverRadius;
72
-
73
-    /**
74
-     * @var int|int[]
75
-     */
76
-    protected $pointHitRadius;
77
-
78
-    /**
79
-     * @var string|string[]
80
-     */
81
-    protected $pointHoverBackgroundColor;
82
-
83
-    /**
84
-     * @var string|string[]
85
-     */
86
-    protected $pointHoverBorderColor;
87
-
88
-    /**
89
-     * @var int|int[]
90
-     */
91
-    protected $pointHoverBorderWidth;
92
-
93
-    /**
94
-     * @var mixed
95
-     */
96
-    protected $pointStyle;
97
-
98
-    /**
99
-     * @var bool
100
-     */
101
-    protected $showLine;
102
-
103
-    /**
104
-     * @var bool
105
-     */
106
-    protected $spanGaps;
107
-
108
-    /**
109
-     * @var bool
110
-     */
111
-    protected $steppedLine;
112
-
113
-    /**
114
-     * @return bool|string
115
-     */
116
-    public function getFill()
117
-    {
118
-        return $this->fill;
119
-    }
120
-
121
-    /**
122
-     * @param bool|string $fill
123
-     *
124
-     * @return $this
125
-     */
126
-    public function setFill($fill)
127
-    {
128
-        $this->fill = $fill;
129
-
130
-        return $this;
131
-    }
132
-
133
-    /**
134
-     * @return string
135
-     */
136
-    public function getCubicInterpolationMode()
137
-    {
138
-        return $this->cubicInterpolationMode;
139
-    }
140
-
141
-    /**
142
-     * @param string $cubicInterpolationMode
143
-     *
144
-     * @return $this
145
-     */
146
-    public function setCubicInterpolationMode($cubicInterpolationMode)
147
-    {
148
-        $this->cubicInterpolationMode = $cubicInterpolationMode;
149
-
150
-        return $this;
151
-    }
152
-
153
-    /**
154
-     * @return int
155
-     */
156
-    public function getLineTension()
157
-    {
158
-        return $this->lineTension;
159
-    }
160
-
161
-    /**
162
-     * @param float $lineTension
163
-     *
164
-     * @return $this
165
-     */
166
-    public function setLineTension($lineTension)
167
-    {
168
-        $this->lineTension = floatval($lineTension);
169
-
170
-        return $this;
171
-    }
172
-
173
-    /**
174
-     * @return string
175
-     */
176
-    public function getBorderCapStyle()
177
-    {
178
-        return $this->borderCapStyle;
179
-    }
180
-
181
-    /**
182
-     * @param string $borderCapStyle
183
-     *
184
-     * @return $this
185
-     */
186
-    public function setBorderCapStyle($borderCapStyle)
187
-    {
188
-        $this->borderCapStyle = $borderCapStyle;
189
-
190
-        return $this;
191
-    }
192
-
193
-    /**
194
-     * @return array
195
-     */
196
-    public function getBorderDash()
197
-    {
198
-        return $this->borderDash;
199
-    }
200
-
201
-    /**
202
-     * @param array $borderDash
203
-     *
204
-     * @return $this
205
-     */
206
-    public function setBorderDash($borderDash)
207
-    {
208
-        $this->borderDash = $borderDash;
209
-
210
-        return $this;
211
-    }
212
-
213
-    /**
214
-     * @return int
215
-     */
216
-    public function getBorderDashOffset()
217
-    {
218
-        return $this->borderDashOffset;
219
-    }
220
-
221
-    /**
222
-     * @param float $borderDashOffset
223
-     *
224
-     * @return $this
225
-     */
226
-    public function setBorderDashOffset($borderDashOffset)
227
-    {
228
-        $this->borderDashOffset = floatval($borderDashOffset);
229
-
230
-        return $this;
231
-    }
232
-
233
-    /**
234
-     * @return string
235
-     */
236
-    public function getBorderJoinStyle()
237
-    {
238
-        return $this->borderJoinStyle;
239
-    }
240
-
241
-    /**
242
-     * @param string $borderJoinStyle
243
-     *
244
-     * @return $this
245
-     */
246
-    public function setBorderJoinStyle($borderJoinStyle)
247
-    {
248
-        $this->borderJoinStyle = $borderJoinStyle;
249
-
250
-        return $this;
251
-    }
252
-
253
-    /**
254
-     * @return string|string[]
255
-     */
256
-    public function getPointBorderColor()
257
-    {
258
-        return $this->pointBorderColor;
259
-    }
260
-
261
-    /**
262
-     * @param string|string[] $pointBorderColor
263
-     *
264
-     * @return $this
265
-     */
266
-    public function setPointBorderColor($pointBorderColor)
267
-    {
268
-        $this->pointBorderColor = $pointBorderColor;
269
-
270
-        return $this;
271
-    }
272
-
273
-    /**
274
-     * @return string|string[]
275
-     */
276
-    public function getPointBackgroundColor()
277
-    {
278
-        return $this->pointBackgroundColor;
279
-    }
280
-
281
-    /**
282
-     * @param string|string[] $pointBackgroundColor
283
-     *
284
-     * @return $this
285
-     */
286
-    public function setPointBackgroundColor($pointBackgroundColor)
287
-    {
288
-        $this->pointBackgroundColor = $pointBackgroundColor;
289
-
290
-        return $this;
291
-    }
292
-
293
-    /**
294
-     * @return int|int[]
295
-     */
296
-    public function getPointBorderWidth()
297
-    {
298
-        return $this->pointBorderWidth;
299
-    }
300
-
301
-    /**
302
-     * @param int|int[] $pointBorderWidth
303
-     *
304
-     * @return $this
305
-     */
306
-    public function setPointBorderWidth($pointBorderWidth)
307
-    {
308
-        $this->pointBorderWidth = $pointBorderWidth;
309
-
310
-        return $this;
311
-    }
312
-
313
-    /**
314
-     * @return int|int[]
315
-     */
316
-    public function getPointRadius()
317
-    {
318
-        return $this->pointRadius;
319
-    }
320
-
321
-    /**
322
-     * @param int|int[] $pointRadius
323
-     *
324
-     * @return $this
325
-     */
326
-    public function setPointRadius($pointRadius)
327
-    {
328
-        $this->pointRadius = $pointRadius;
329
-
330
-        return $this;
331
-    }
332
-
333
-    /**
334
-     * @return int|int[]
335
-     */
336
-    public function getPointHoverRadius()
337
-    {
338
-        return $this->pointHoverRadius;
339
-    }
340
-
341
-    /**
342
-     * @param int|int[] $pointHoverRadius
343
-     *
344
-     * @return $this
345
-     */
346
-    public function setPointHoverRadius($pointHoverRadius)
347
-    {
348
-        $this->pointHoverRadius = $pointHoverRadius;
349
-
350
-        return $this;
351
-    }
352
-
353
-    /**
354
-     * @return int|int[]
355
-     */
356
-    public function getPointHitRadius()
357
-    {
358
-        return $this->pointHitRadius;
359
-    }
360
-
361
-    /**
362
-     * @param int|int[] $pointHitRadius
363
-     *
364
-     * @return $this
365
-     */
366
-    public function setPointHitRadius($pointHitRadius)
367
-    {
368
-        $this->pointHitRadius = $pointHitRadius;
369
-
370
-        return $this;
371
-    }
372
-
373
-    /**
374
-     * @return string|string[]
375
-     */
376
-    public function getPointHoverBackgroundColor()
377
-    {
378
-        return $this->pointHoverBackgroundColor;
379
-    }
380
-
381
-    /**
382
-     * @param string|string[] $pointHoverBackgroundColor
383
-     *
384
-     * @return $this
385
-     */
386
-    public function setPointHoverBackgroundColor($pointHoverBackgroundColor)
387
-    {
388
-        $this->pointHoverBackgroundColor = $pointHoverBackgroundColor;
389
-
390
-        return $this;
391
-    }
392
-
393
-    /**
394
-     * @return string|string[]
395
-     */
396
-    public function getPointHoverBorderColor()
397
-    {
398
-        return $this->pointHoverBorderColor;
399
-    }
400
-
401
-    /**
402
-     * @param string|string[] $pointHoverBorderColor
403
-     *
404
-     * @return $this
405
-     */
406
-    public function setPointHoverBorderColor($pointHoverBorderColor)
407
-    {
408
-        $this->pointHoverBorderColor = $pointHoverBorderColor;
409
-
410
-        return $this;
411
-    }
412
-
413
-    /**
414
-     * @return int|int[]
415
-     */
416
-    public function getPointHoverBorderWidth()
417
-    {
418
-        return $this->pointHoverBorderWidth;
419
-    }
420
-
421
-    /**
422
-     * @param int|int[] $pointHoverBorderWidth
423
-     *
424
-     * @return $this
425
-     */
426
-    public function setPointHoverBorderWidth($pointHoverBorderWidth)
427
-    {
428
-        $this->pointHoverBorderWidth = $pointHoverBorderWidth;
429
-
430
-        return $this;
431
-    }
432
-
433
-    /**
434
-     * @return mixed
435
-     */
436
-    public function getPointStyle()
437
-    {
438
-        return $this->pointStyle;
439
-    }
440
-
441
-    /**
442
-     * @param mixed $pointStyle
443
-     *
444
-     * @return $this
445
-     */
446
-    public function setPointStyle($pointStyle)
447
-    {
448
-        $this->pointStyle = $pointStyle;
449
-
450
-        return $this;
451
-    }
452
-
453
-    /**
454
-     * @return bool
455
-     */
456
-    public function isShowLine()
457
-    {
458
-        return $this->showLine;
459
-    }
460
-
461
-    /**
462
-     * @param bool $showLine
463
-     *
464
-     * @return $this
465
-     */
466
-    public function setShowLine($showLine)
467
-    {
468
-        $this->showLine = $showLine;
469
-
470
-        return $this;
471
-    }
472
-
473
-    /**
474
-     * @return bool
475
-     */
476
-    public function isSpanGaps()
477
-    {
478
-        return $this->spanGaps;
479
-    }
480
-
481
-    /**
482
-     * @param bool $spanGaps
483
-     *
484
-     * @return $this
485
-     */
486
-    public function setSpanGaps($spanGaps)
487
-    {
488
-        $this->spanGaps = $spanGaps;
489
-
490
-        return $this;
491
-    }
492
-
493
-    /**
494
-     * @return bool
495
-     */
496
-    public function isSteppedLine()
497
-    {
498
-        return $this->steppedLine;
499
-    }
500
-
501
-    /**
502
-     * @param bool $steppedLine
503
-     *
504
-     * @return $this
505
-     */
506
-    public function setSteppedLine($steppedLine)
507
-    {
508
-        $this->steppedLine = $steppedLine;
509
-
510
-        return $this;
511
-    }
13
+	/**
14
+	 * @var bool|string
15
+	 */
16
+	protected $fill;
17
+
18
+	/**
19
+	 * @var string
20
+	 */
21
+	protected $cubicInterpolationMode;
22
+
23
+	/**
24
+	 * @var int
25
+	 */
26
+	protected $lineTension;
27
+
28
+	/**
29
+	 * @var string
30
+	 */
31
+	protected $borderCapStyle;
32
+
33
+	/**
34
+	 * @var array
35
+	 */
36
+	protected $borderDash;
37
+
38
+	/**
39
+	 * @var float
40
+	 */
41
+	protected $borderDashOffset;
42
+
43
+	/**
44
+	 * @var string
45
+	 */
46
+	protected $borderJoinStyle;
47
+
48
+	/**
49
+	 * @var string|string[]
50
+	 */
51
+	protected $pointBorderColor;
52
+
53
+	/**
54
+	 * @var string|string[]
55
+	 */
56
+	protected $pointBackgroundColor;
57
+
58
+	/**
59
+	 * @var int|int[]
60
+	 */
61
+	protected $pointBorderWidth;
62
+
63
+	/**
64
+	 * @var int|int[]
65
+	 */
66
+	protected $pointRadius;
67
+
68
+	/**
69
+	 * @var int|int[]
70
+	 */
71
+	protected $pointHoverRadius;
72
+
73
+	/**
74
+	 * @var int|int[]
75
+	 */
76
+	protected $pointHitRadius;
77
+
78
+	/**
79
+	 * @var string|string[]
80
+	 */
81
+	protected $pointHoverBackgroundColor;
82
+
83
+	/**
84
+	 * @var string|string[]
85
+	 */
86
+	protected $pointHoverBorderColor;
87
+
88
+	/**
89
+	 * @var int|int[]
90
+	 */
91
+	protected $pointHoverBorderWidth;
92
+
93
+	/**
94
+	 * @var mixed
95
+	 */
96
+	protected $pointStyle;
97
+
98
+	/**
99
+	 * @var bool
100
+	 */
101
+	protected $showLine;
102
+
103
+	/**
104
+	 * @var bool
105
+	 */
106
+	protected $spanGaps;
107
+
108
+	/**
109
+	 * @var bool
110
+	 */
111
+	protected $steppedLine;
112
+
113
+	/**
114
+	 * @return bool|string
115
+	 */
116
+	public function getFill()
117
+	{
118
+		return $this->fill;
119
+	}
120
+
121
+	/**
122
+	 * @param bool|string $fill
123
+	 *
124
+	 * @return $this
125
+	 */
126
+	public function setFill($fill)
127
+	{
128
+		$this->fill = $fill;
129
+
130
+		return $this;
131
+	}
132
+
133
+	/**
134
+	 * @return string
135
+	 */
136
+	public function getCubicInterpolationMode()
137
+	{
138
+		return $this->cubicInterpolationMode;
139
+	}
140
+
141
+	/**
142
+	 * @param string $cubicInterpolationMode
143
+	 *
144
+	 * @return $this
145
+	 */
146
+	public function setCubicInterpolationMode($cubicInterpolationMode)
147
+	{
148
+		$this->cubicInterpolationMode = $cubicInterpolationMode;
149
+
150
+		return $this;
151
+	}
152
+
153
+	/**
154
+	 * @return int
155
+	 */
156
+	public function getLineTension()
157
+	{
158
+		return $this->lineTension;
159
+	}
160
+
161
+	/**
162
+	 * @param float $lineTension
163
+	 *
164
+	 * @return $this
165
+	 */
166
+	public function setLineTension($lineTension)
167
+	{
168
+		$this->lineTension = floatval($lineTension);
169
+
170
+		return $this;
171
+	}
172
+
173
+	/**
174
+	 * @return string
175
+	 */
176
+	public function getBorderCapStyle()
177
+	{
178
+		return $this->borderCapStyle;
179
+	}
180
+
181
+	/**
182
+	 * @param string $borderCapStyle
183
+	 *
184
+	 * @return $this
185
+	 */
186
+	public function setBorderCapStyle($borderCapStyle)
187
+	{
188
+		$this->borderCapStyle = $borderCapStyle;
189
+
190
+		return $this;
191
+	}
192
+
193
+	/**
194
+	 * @return array
195
+	 */
196
+	public function getBorderDash()
197
+	{
198
+		return $this->borderDash;
199
+	}
200
+
201
+	/**
202
+	 * @param array $borderDash
203
+	 *
204
+	 * @return $this
205
+	 */
206
+	public function setBorderDash($borderDash)
207
+	{
208
+		$this->borderDash = $borderDash;
209
+
210
+		return $this;
211
+	}
212
+
213
+	/**
214
+	 * @return int
215
+	 */
216
+	public function getBorderDashOffset()
217
+	{
218
+		return $this->borderDashOffset;
219
+	}
220
+
221
+	/**
222
+	 * @param float $borderDashOffset
223
+	 *
224
+	 * @return $this
225
+	 */
226
+	public function setBorderDashOffset($borderDashOffset)
227
+	{
228
+		$this->borderDashOffset = floatval($borderDashOffset);
229
+
230
+		return $this;
231
+	}
232
+
233
+	/**
234
+	 * @return string
235
+	 */
236
+	public function getBorderJoinStyle()
237
+	{
238
+		return $this->borderJoinStyle;
239
+	}
240
+
241
+	/**
242
+	 * @param string $borderJoinStyle
243
+	 *
244
+	 * @return $this
245
+	 */
246
+	public function setBorderJoinStyle($borderJoinStyle)
247
+	{
248
+		$this->borderJoinStyle = $borderJoinStyle;
249
+
250
+		return $this;
251
+	}
252
+
253
+	/**
254
+	 * @return string|string[]
255
+	 */
256
+	public function getPointBorderColor()
257
+	{
258
+		return $this->pointBorderColor;
259
+	}
260
+
261
+	/**
262
+	 * @param string|string[] $pointBorderColor
263
+	 *
264
+	 * @return $this
265
+	 */
266
+	public function setPointBorderColor($pointBorderColor)
267
+	{
268
+		$this->pointBorderColor = $pointBorderColor;
269
+
270
+		return $this;
271
+	}
272
+
273
+	/**
274
+	 * @return string|string[]
275
+	 */
276
+	public function getPointBackgroundColor()
277
+	{
278
+		return $this->pointBackgroundColor;
279
+	}
280
+
281
+	/**
282
+	 * @param string|string[] $pointBackgroundColor
283
+	 *
284
+	 * @return $this
285
+	 */
286
+	public function setPointBackgroundColor($pointBackgroundColor)
287
+	{
288
+		$this->pointBackgroundColor = $pointBackgroundColor;
289
+
290
+		return $this;
291
+	}
292
+
293
+	/**
294
+	 * @return int|int[]
295
+	 */
296
+	public function getPointBorderWidth()
297
+	{
298
+		return $this->pointBorderWidth;
299
+	}
300
+
301
+	/**
302
+	 * @param int|int[] $pointBorderWidth
303
+	 *
304
+	 * @return $this
305
+	 */
306
+	public function setPointBorderWidth($pointBorderWidth)
307
+	{
308
+		$this->pointBorderWidth = $pointBorderWidth;
309
+
310
+		return $this;
311
+	}
312
+
313
+	/**
314
+	 * @return int|int[]
315
+	 */
316
+	public function getPointRadius()
317
+	{
318
+		return $this->pointRadius;
319
+	}
320
+
321
+	/**
322
+	 * @param int|int[] $pointRadius
323
+	 *
324
+	 * @return $this
325
+	 */
326
+	public function setPointRadius($pointRadius)
327
+	{
328
+		$this->pointRadius = $pointRadius;
329
+
330
+		return $this;
331
+	}
332
+
333
+	/**
334
+	 * @return int|int[]
335
+	 */
336
+	public function getPointHoverRadius()
337
+	{
338
+		return $this->pointHoverRadius;
339
+	}
340
+
341
+	/**
342
+	 * @param int|int[] $pointHoverRadius
343
+	 *
344
+	 * @return $this
345
+	 */
346
+	public function setPointHoverRadius($pointHoverRadius)
347
+	{
348
+		$this->pointHoverRadius = $pointHoverRadius;
349
+
350
+		return $this;
351
+	}
352
+
353
+	/**
354
+	 * @return int|int[]
355
+	 */
356
+	public function getPointHitRadius()
357
+	{
358
+		return $this->pointHitRadius;
359
+	}
360
+
361
+	/**
362
+	 * @param int|int[] $pointHitRadius
363
+	 *
364
+	 * @return $this
365
+	 */
366
+	public function setPointHitRadius($pointHitRadius)
367
+	{
368
+		$this->pointHitRadius = $pointHitRadius;
369
+
370
+		return $this;
371
+	}
372
+
373
+	/**
374
+	 * @return string|string[]
375
+	 */
376
+	public function getPointHoverBackgroundColor()
377
+	{
378
+		return $this->pointHoverBackgroundColor;
379
+	}
380
+
381
+	/**
382
+	 * @param string|string[] $pointHoverBackgroundColor
383
+	 *
384
+	 * @return $this
385
+	 */
386
+	public function setPointHoverBackgroundColor($pointHoverBackgroundColor)
387
+	{
388
+		$this->pointHoverBackgroundColor = $pointHoverBackgroundColor;
389
+
390
+		return $this;
391
+	}
392
+
393
+	/**
394
+	 * @return string|string[]
395
+	 */
396
+	public function getPointHoverBorderColor()
397
+	{
398
+		return $this->pointHoverBorderColor;
399
+	}
400
+
401
+	/**
402
+	 * @param string|string[] $pointHoverBorderColor
403
+	 *
404
+	 * @return $this
405
+	 */
406
+	public function setPointHoverBorderColor($pointHoverBorderColor)
407
+	{
408
+		$this->pointHoverBorderColor = $pointHoverBorderColor;
409
+
410
+		return $this;
411
+	}
412
+
413
+	/**
414
+	 * @return int|int[]
415
+	 */
416
+	public function getPointHoverBorderWidth()
417
+	{
418
+		return $this->pointHoverBorderWidth;
419
+	}
420
+
421
+	/**
422
+	 * @param int|int[] $pointHoverBorderWidth
423
+	 *
424
+	 * @return $this
425
+	 */
426
+	public function setPointHoverBorderWidth($pointHoverBorderWidth)
427
+	{
428
+		$this->pointHoverBorderWidth = $pointHoverBorderWidth;
429
+
430
+		return $this;
431
+	}
432
+
433
+	/**
434
+	 * @return mixed
435
+	 */
436
+	public function getPointStyle()
437
+	{
438
+		return $this->pointStyle;
439
+	}
440
+
441
+	/**
442
+	 * @param mixed $pointStyle
443
+	 *
444
+	 * @return $this
445
+	 */
446
+	public function setPointStyle($pointStyle)
447
+	{
448
+		$this->pointStyle = $pointStyle;
449
+
450
+		return $this;
451
+	}
452
+
453
+	/**
454
+	 * @return bool
455
+	 */
456
+	public function isShowLine()
457
+	{
458
+		return $this->showLine;
459
+	}
460
+
461
+	/**
462
+	 * @param bool $showLine
463
+	 *
464
+	 * @return $this
465
+	 */
466
+	public function setShowLine($showLine)
467
+	{
468
+		$this->showLine = $showLine;
469
+
470
+		return $this;
471
+	}
472
+
473
+	/**
474
+	 * @return bool
475
+	 */
476
+	public function isSpanGaps()
477
+	{
478
+		return $this->spanGaps;
479
+	}
480
+
481
+	/**
482
+	 * @param bool $spanGaps
483
+	 *
484
+	 * @return $this
485
+	 */
486
+	public function setSpanGaps($spanGaps)
487
+	{
488
+		$this->spanGaps = $spanGaps;
489
+
490
+		return $this;
491
+	}
492
+
493
+	/**
494
+	 * @return bool
495
+	 */
496
+	public function isSteppedLine()
497
+	{
498
+		return $this->steppedLine;
499
+	}
500
+
501
+	/**
502
+	 * @param bool $steppedLine
503
+	 *
504
+	 * @return $this
505
+	 */
506
+	public function setSteppedLine($steppedLine)
507
+	{
508
+		$this->steppedLine = $steppedLine;
509
+
510
+		return $this;
511
+	}
512 512
 }
Please login to merge, or discard this patch.
src/LabelsCollection.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
12 12
  */
13 13
 class LabelsCollection extends ArrayAccess implements JsonSerializable
14 14
 {
15
-    /**
16
-     * @return array
17
-     */
18
-    public function jsonSerialize()
19
-    {
20
-        return $this->data;
21
-    }
15
+	/**
16
+	 * @return array
17
+	 */
18
+	public function jsonSerialize()
19
+	{
20
+		return $this->data;
21
+	}
22 22
 }
Please login to merge, or discard this patch.
src/Options.php 1 patch
Indentation   +200 added lines, -200 removed lines patch added patch discarded remove patch
@@ -21,204 +21,204 @@
 block discarded – undo
21 21
  */
22 22
 class Options implements ChartOwnedInterface, ArraySerializableInterface, JsonSerializable
23 23
 {
24
-    use ChartOwned;
25
-    use ArraySerializable;
26
-
27
-    /**
28
-     * @var Layout
29
-     */
30
-    protected $layout;
31
-
32
-    /**
33
-     * @var Title
34
-     */
35
-    protected $title;
36
-
37
-    /**
38
-     * @var Elements
39
-     */
40
-    protected $elements;
41
-
42
-    /**
43
-     * @var Hover
44
-     */
45
-    protected $hover;
46
-
47
-    /**
48
-     * @var \Zend\Json\Expr
49
-     */
50
-    protected $onClick;
51
-
52
-    /**
53
-     * @var Scales
54
-     */
55
-    protected $scales;
56
-
57
-    /**
58
-     * @var Animation
59
-     */
60
-    protected $animation;
61
-
62
-    /**
63
-     * @var Legend
64
-     */
65
-    protected $legend;
66
-
67
-    /**
68
-     * @var Tooltips
69
-     */
70
-    protected $tooltips;
71
-
72
-    /**
73
-     * @var bool
74
-     */
75
-    protected $maintainAspectRatio;
76
-
77
-    /**
78
-     * @return Layout
79
-     */
80
-    public function getLayout()
81
-    {
82
-        if (is_null($this->layout)) {
83
-            $this->layout = new Layout();
84
-        }
85
-
86
-        return $this->layout;
87
-    }
88
-
89
-    /**
90
-     * @return Elements
91
-     */
92
-    public function getElements()
93
-    {
94
-        if (is_null($this->elements)) {
95
-            $this->elements = new Elements();
96
-        }
97
-
98
-        return $this->elements;
99
-    }
100
-
101
-    /**
102
-     * @return Title
103
-     */
104
-    public function getTitle()
105
-    {
106
-        if (is_null($this->title)) {
107
-            $this->title = new Title();
108
-        }
109
-
110
-        return $this->title;
111
-    }
112
-
113
-    /**
114
-     * @return Hover
115
-     */
116
-    public function getHover()
117
-    {
118
-        if (is_null($this->hover)) {
119
-            $this->hover = new Hover();
120
-        }
121
-
122
-        return $this->hover;
123
-    }
124
-
125
-    /**
126
-     * @return \Zend\Json\Expr
127
-     */
128
-    public function getOnClick()
129
-    {
130
-        return $this->onClick;
131
-    }
132
-
133
-    /**
134
-     * @param string $onClick
135
-     *
136
-     * @return $this
137
-     */
138
-    public function setOnClick($onClick)
139
-    {
140
-        $this->onClick = new Expr(strval($onClick));
141
-
142
-        return $this;
143
-    }
144
-
145
-    /**
146
-     * @return Scales
147
-     */
148
-    public function getScales()
149
-    {
150
-        if (is_null($this->scales)) {
151
-            $this->scales = new Scales();
152
-        }
153
-
154
-        return $this->scales;
155
-    }
156
-
157
-    /**
158
-     * @return Animation
159
-     */
160
-    public function getAnimation()
161
-    {
162
-        if (is_null($this->animation)) {
163
-            $this->animation = new Animation();
164
-        }
165
-
166
-        return $this->animation;
167
-    }
168
-
169
-    /**
170
-     * @return Legend
171
-     */
172
-    public function getLegend()
173
-    {
174
-        if (is_null($this->legend)) {
175
-            $this->legend = new Legend();
176
-        }
177
-
178
-        return $this->legend;
179
-    }
180
-
181
-    /**
182
-     * @return Tooltips
183
-     */
184
-    public function getTooltips()
185
-    {
186
-        if (is_null($this->tooltips)) {
187
-            $this->tooltips = new Tooltips();
188
-        }
189
-
190
-        return $this->tooltips;
191
-    }
192
-
193
-    /**
194
-     * @return bool
195
-     */
196
-    public function isMaintainAspectRatio()
197
-    {
198
-        if (is_null($this->maintainAspectRatio)) {
199
-            $this->maintainAspectRatio = true;
200
-        }
201
-
202
-        return $this->maintainAspectRatio;
203
-    }
204
-
205
-    /**
206
-     * @param bool $flag
207
-     *
208
-     * @return $this
209
-     */
210
-    public function setMaintainAspectRatio($flag)
211
-    {
212
-        $this->maintainAspectRatio = boolval($flag);
213
-
214
-        return $this;
215
-    }
216
-
217
-    /**
218
-     * @return array
219
-     */
220
-    public function jsonSerialize()
221
-    {
222
-        return $this->getArrayCopy();
223
-    }
24
+	use ChartOwned;
25
+	use ArraySerializable;
26
+
27
+	/**
28
+	 * @var Layout
29
+	 */
30
+	protected $layout;
31
+
32
+	/**
33
+	 * @var Title
34
+	 */
35
+	protected $title;
36
+
37
+	/**
38
+	 * @var Elements
39
+	 */
40
+	protected $elements;
41
+
42
+	/**
43
+	 * @var Hover
44
+	 */
45
+	protected $hover;
46
+
47
+	/**
48
+	 * @var \Zend\Json\Expr
49
+	 */
50
+	protected $onClick;
51
+
52
+	/**
53
+	 * @var Scales
54
+	 */
55
+	protected $scales;
56
+
57
+	/**
58
+	 * @var Animation
59
+	 */
60
+	protected $animation;
61
+
62
+	/**
63
+	 * @var Legend
64
+	 */
65
+	protected $legend;
66
+
67
+	/**
68
+	 * @var Tooltips
69
+	 */
70
+	protected $tooltips;
71
+
72
+	/**
73
+	 * @var bool
74
+	 */
75
+	protected $maintainAspectRatio;
76
+
77
+	/**
78
+	 * @return Layout
79
+	 */
80
+	public function getLayout()
81
+	{
82
+		if (is_null($this->layout)) {
83
+			$this->layout = new Layout();
84
+		}
85
+
86
+		return $this->layout;
87
+	}
88
+
89
+	/**
90
+	 * @return Elements
91
+	 */
92
+	public function getElements()
93
+	{
94
+		if (is_null($this->elements)) {
95
+			$this->elements = new Elements();
96
+		}
97
+
98
+		return $this->elements;
99
+	}
100
+
101
+	/**
102
+	 * @return Title
103
+	 */
104
+	public function getTitle()
105
+	{
106
+		if (is_null($this->title)) {
107
+			$this->title = new Title();
108
+		}
109
+
110
+		return $this->title;
111
+	}
112
+
113
+	/**
114
+	 * @return Hover
115
+	 */
116
+	public function getHover()
117
+	{
118
+		if (is_null($this->hover)) {
119
+			$this->hover = new Hover();
120
+		}
121
+
122
+		return $this->hover;
123
+	}
124
+
125
+	/**
126
+	 * @return \Zend\Json\Expr
127
+	 */
128
+	public function getOnClick()
129
+	{
130
+		return $this->onClick;
131
+	}
132
+
133
+	/**
134
+	 * @param string $onClick
135
+	 *
136
+	 * @return $this
137
+	 */
138
+	public function setOnClick($onClick)
139
+	{
140
+		$this->onClick = new Expr(strval($onClick));
141
+
142
+		return $this;
143
+	}
144
+
145
+	/**
146
+	 * @return Scales
147
+	 */
148
+	public function getScales()
149
+	{
150
+		if (is_null($this->scales)) {
151
+			$this->scales = new Scales();
152
+		}
153
+
154
+		return $this->scales;
155
+	}
156
+
157
+	/**
158
+	 * @return Animation
159
+	 */
160
+	public function getAnimation()
161
+	{
162
+		if (is_null($this->animation)) {
163
+			$this->animation = new Animation();
164
+		}
165
+
166
+		return $this->animation;
167
+	}
168
+
169
+	/**
170
+	 * @return Legend
171
+	 */
172
+	public function getLegend()
173
+	{
174
+		if (is_null($this->legend)) {
175
+			$this->legend = new Legend();
176
+		}
177
+
178
+		return $this->legend;
179
+	}
180
+
181
+	/**
182
+	 * @return Tooltips
183
+	 */
184
+	public function getTooltips()
185
+	{
186
+		if (is_null($this->tooltips)) {
187
+			$this->tooltips = new Tooltips();
188
+		}
189
+
190
+		return $this->tooltips;
191
+	}
192
+
193
+	/**
194
+	 * @return bool
195
+	 */
196
+	public function isMaintainAspectRatio()
197
+	{
198
+		if (is_null($this->maintainAspectRatio)) {
199
+			$this->maintainAspectRatio = true;
200
+		}
201
+
202
+		return $this->maintainAspectRatio;
203
+	}
204
+
205
+	/**
206
+	 * @param bool $flag
207
+	 *
208
+	 * @return $this
209
+	 */
210
+	public function setMaintainAspectRatio($flag)
211
+	{
212
+		$this->maintainAspectRatio = boolval($flag);
213
+
214
+		return $this;
215
+	}
216
+
217
+	/**
218
+	 * @return array
219
+	 */
220
+	public function jsonSerialize()
221
+	{
222
+		return $this->getArrayCopy();
223
+	}
224 224
 }
Please login to merge, or discard this patch.
src/Options/Scale.php 1 patch
Indentation   +584 added lines, -584 removed lines patch added patch discarded remove patch
@@ -16,588 +16,588 @@
 block discarded – undo
16 16
  */
17 17
 abstract class Scale implements ArraySerializableInterface, JsonSerializable
18 18
 {
19
-    use ArraySerializable;
20
-
21
-    /**
22
-     * @var string
23
-     */
24
-    protected $type;
25
-
26
-    /**
27
-     * @var bool
28
-     */
29
-    protected $display;
30
-
31
-    /**
32
-     * @var string
33
-     */
34
-    protected $id;
35
-
36
-    /**
37
-     * @var bool
38
-     */
39
-    protected $stacked;
40
-
41
-    /**
42
-     * @var int
43
-     */
44
-    protected $barThickness;
45
-
46
-    /**
47
-     * @var string
48
-     */
49
-    protected $position;
50
-
51
-    /**
52
-     * @var string
53
-     */
54
-    protected $beforeUpdate;
55
-
56
-    /**
57
-     * @var string
58
-     */
59
-    protected $beforeSetDimensions;
60
-
61
-    /**
62
-     * @var string
63
-     */
64
-    protected $afterSetDimensions;
65
-
66
-    /**
67
-     * @var string
68
-     */
69
-    protected $beforeDataLimits;
70
-
71
-    /**
72
-     * @var string
73
-     */
74
-    protected $afterDataLimits;
75
-
76
-    /**
77
-     * @var string
78
-     */
79
-    protected $beforeBuildTicks;
80
-
81
-    /**
82
-     * @var string
83
-     */
84
-    protected $afterBuildTicks;
85
-
86
-    /**
87
-     * @var string
88
-     */
89
-    protected $beforeTickToLabelConversion;
90
-
91
-    /**
92
-     * @var string
93
-     */
94
-    protected $afterTickToLabelConversion;
95
-
96
-    /**
97
-     * @var string
98
-     */
99
-    protected $beforeCalculateTickRotation;
100
-
101
-    /**
102
-     * @var string
103
-     */
104
-    protected $afterCalculateTickRotation;
105
-
106
-    /**
107
-     * @var string
108
-     */
109
-    protected $beforeFit;
110
-
111
-    /**
112
-     * @var string
113
-     */
114
-    protected $afterFit;
115
-
116
-    /**
117
-     * @var string
118
-     */
119
-    protected $afterUpdate;
120
-
121
-    /**
122
-     * @var GridLines
123
-     */
124
-    protected $gridLines;
125
-
126
-    /**
127
-     * @var ScaleLabel
128
-     */
129
-    protected $scaleLabel;
130
-
131
-    /**
132
-     * @var Ticks
133
-     */
134
-    protected $ticks;
135
-
136
-    /**
137
-     * @return string
138
-     */
139
-    public function getType()
140
-    {
141
-        return $this->type;
142
-    }
143
-
144
-    /**
145
-     * @param string $type
146
-     *
147
-     * @return $this
148
-     */
149
-    public function setType($type)
150
-    {
151
-        $this->type = $type;
152
-
153
-        return $this;
154
-    }
155
-
156
-    /**
157
-     * @return bool
158
-     */
159
-    public function isDisplay()
160
-    {
161
-        return $this->display;
162
-    }
163
-
164
-    /**
165
-     * @param bool $display
166
-     *
167
-     * @return $this
168
-     */
169
-    public function setDisplay($display)
170
-    {
171
-        $this->display = $display;
172
-
173
-        return $this;
174
-    }
175
-
176
-    /**
177
-     * @return string
178
-     */
179
-    public function getId()
180
-    {
181
-        return $this->id;
182
-    }
183
-
184
-    /**
185
-     * @param string $id
186
-     *
187
-     * @return $this
188
-     */
189
-    public function setId($id)
190
-    {
191
-        $this->id = strval($id);
192
-
193
-        return $this;
194
-    }
195
-
196
-    /**
197
-     * @return bool
198
-     */
199
-    public function isStacked()
200
-    {
201
-        return $this->stacked;
202
-    }
203
-
204
-    /**
205
-     * @param bool $stacked
206
-     *
207
-     * @return $this
208
-     */
209
-    public function setStacked($stacked)
210
-    {
211
-        $this->stacked = ! ! $stacked;
212
-
213
-        return $this;
214
-    }
215
-
216
-    /**
217
-     * @return int
218
-     */
219
-    public function getBarThickness()
220
-    {
221
-        return $this->barThickness;
222
-    }
223
-
224
-    /**
225
-     * @param int $barThickness
226
-     *
227
-     * @return $this
228
-     */
229
-    public function setBarThickness($barThickness)
230
-    {
231
-        $this->barThickness = intval($barThickness);
232
-
233
-        return $this;
234
-    }
235
-
236
-    /**
237
-     * @return string
238
-     */
239
-    public function getPosition()
240
-    {
241
-        return $this->position;
242
-    }
243
-
244
-    /**
245
-     * @param string $position
246
-     *
247
-     * @return $this
248
-     */
249
-    public function setPosition($position)
250
-    {
251
-        $this->position = strval($position);
252
-
253
-        return $this;
254
-    }
255
-
256
-    /**
257
-     * @return string
258
-     */
259
-    public function getBeforeUpdate()
260
-    {
261
-        return $this->beforeUpdate;
262
-    }
263
-
264
-    /**
265
-     * @param string $beforeUpdate
266
-     *
267
-     * @return $this
268
-     */
269
-    public function setBeforeUpdate($beforeUpdate)
270
-    {
271
-        $this->beforeUpdate = strval($beforeUpdate);
272
-
273
-        return $this;
274
-    }
275
-
276
-    /**
277
-     * @return string
278
-     */
279
-    public function getBeforeSetDimensions()
280
-    {
281
-        return $this->beforeSetDimensions;
282
-    }
283
-
284
-    /**
285
-     * @param string $beforeSetDimensions
286
-     *
287
-     * @return $this
288
-     */
289
-    public function setBeforeSetDimensions($beforeSetDimensions)
290
-    {
291
-        $this->beforeSetDimensions = strval($beforeSetDimensions);
292
-
293
-        return $this;
294
-    }
295
-
296
-    /**
297
-     * @return string
298
-     */
299
-    public function getAfterSetDimensions()
300
-    {
301
-        return $this->afterSetDimensions;
302
-    }
303
-
304
-    /**
305
-     * @param string $afterSetDimensions
306
-     *
307
-     * @return $this
308
-     */
309
-    public function setAfterSetDimensions($afterSetDimensions)
310
-    {
311
-        $this->afterSetDimensions = strval($afterSetDimensions);
312
-
313
-        return $this;
314
-    }
315
-
316
-    /**
317
-     * @return string
318
-     */
319
-    public function getBeforeDataLimits()
320
-    {
321
-        return $this->beforeDataLimits;
322
-    }
323
-
324
-    /**
325
-     * @param string $beforeDataLimits
326
-     *
327
-     * @return $this
328
-     */
329
-    public function setBeforeDataLimits($beforeDataLimits)
330
-    {
331
-        $this->beforeDataLimits = strval($beforeDataLimits);
332
-
333
-        return $this;
334
-    }
335
-
336
-    /**
337
-     * @return string
338
-     */
339
-    public function getAfterDataLimits()
340
-    {
341
-        return $this->afterDataLimits;
342
-    }
343
-
344
-    /**
345
-     * @param string $afterDataLimits
346
-     *
347
-     * @return $this
348
-     */
349
-    public function setAfterDataLimits($afterDataLimits)
350
-    {
351
-        $this->afterDataLimits = strval($afterDataLimits);
352
-
353
-        return $this;
354
-    }
355
-
356
-    /**
357
-     * @return string
358
-     */
359
-    public function getBeforeBuildTicks()
360
-    {
361
-        return $this->beforeBuildTicks;
362
-    }
363
-
364
-    /**
365
-     * @param string $beforeBuildTicks
366
-     *
367
-     * @return $this
368
-     */
369
-    public function setBeforeBuildTicks($beforeBuildTicks)
370
-    {
371
-        $this->beforeBuildTicks = strval($beforeBuildTicks);
372
-
373
-        return $this;
374
-    }
375
-
376
-    /**
377
-     * @return string
378
-     */
379
-    public function getAfterBuildTicks()
380
-    {
381
-        return $this->afterBuildTicks;
382
-    }
383
-
384
-    /**
385
-     * @param string $afterBuildTicks
386
-     *
387
-     * @return $this
388
-     */
389
-    public function setAfterBuildTicks($afterBuildTicks)
390
-    {
391
-        $this->afterBuildTicks = strval($afterBuildTicks);
392
-
393
-        return $this;
394
-    }
395
-
396
-    /**
397
-     * @return string
398
-     */
399
-    public function getBeforeTickToLabelConversion()
400
-    {
401
-        return $this->beforeTickToLabelConversion;
402
-    }
403
-
404
-    /**
405
-     * @param string $beforeTickToLabelConversion
406
-     *
407
-     * @return $this
408
-     */
409
-    public function setBeforeTickToLabelConversion($beforeTickToLabelConversion)
410
-    {
411
-        $this->beforeTickToLabelConversion = strval($beforeTickToLabelConversion);
412
-
413
-        return $this;
414
-    }
415
-
416
-    /**
417
-     * @return string
418
-     */
419
-    public function getAfterTickToLabelConversion()
420
-    {
421
-        return $this->afterTickToLabelConversion;
422
-    }
423
-
424
-    /**
425
-     * @param string $afterTickToLabelConversion
426
-     *
427
-     * @return $this
428
-     */
429
-    public function setAfterTickToLabelConversion($afterTickToLabelConversion)
430
-    {
431
-        $this->afterTickToLabelConversion = strval($afterTickToLabelConversion);
432
-
433
-        return $this;
434
-    }
435
-
436
-    /**
437
-     * @return string
438
-     */
439
-    public function getBeforeCalculateTickRotation()
440
-    {
441
-        return $this->beforeCalculateTickRotation;
442
-    }
443
-
444
-    /**
445
-     * @param string $beforeCalculateTickRotation
446
-     *
447
-     * @return $this
448
-     */
449
-    public function setBeforeCalculateTickRotation($beforeCalculateTickRotation)
450
-    {
451
-        $this->beforeCalculateTickRotation = strval($beforeCalculateTickRotation);
452
-
453
-        return $this;
454
-    }
455
-
456
-    /**
457
-     * @return string
458
-     */
459
-    public function getAfterCalculateTickRotation()
460
-    {
461
-        return $this->afterCalculateTickRotation;
462
-    }
463
-
464
-    /**
465
-     * @param string $afterCalculateTickRotation
466
-     *
467
-     * @return $this
468
-     */
469
-    public function setAfterCalculateTickRotation($afterCalculateTickRotation)
470
-    {
471
-        $this->afterCalculateTickRotation = strval($afterCalculateTickRotation);
472
-
473
-        return $this;
474
-    }
475
-
476
-    /**
477
-     * @return string
478
-     */
479
-    public function getBeforeFit()
480
-    {
481
-        return $this->beforeFit;
482
-    }
483
-
484
-    /**
485
-     * @param string $beforeFit
486
-     *
487
-     * @return $this
488
-     */
489
-    public function setBeforeFit($beforeFit)
490
-    {
491
-        $this->beforeFit = strval($beforeFit);
492
-
493
-        return $this;
494
-    }
495
-
496
-    /**
497
-     * @return string
498
-     */
499
-    public function getAfterFit()
500
-    {
501
-        return $this->afterFit;
502
-    }
503
-
504
-    /**
505
-     * @param string $afterFit
506
-     *
507
-     * @return $this
508
-     */
509
-    public function setAfterFit($afterFit)
510
-    {
511
-        $this->afterFit = strval($afterFit);
512
-
513
-        return $this;
514
-    }
515
-
516
-    /**
517
-     * @return string
518
-     */
519
-    public function getAfterUpdate()
520
-    {
521
-        return $this->afterUpdate;
522
-    }
523
-
524
-    /**
525
-     * @param string $afterUpdate
526
-     *
527
-     * @return $this
528
-     */
529
-    public function setAfterUpdate($afterUpdate)
530
-    {
531
-        $this->afterUpdate = strval($afterUpdate);
532
-
533
-        return $this;
534
-    }
535
-
536
-    /**
537
-     * @return GridLines
538
-     */
539
-    public function getGridLines()
540
-    {
541
-        return $this->gridLines;
542
-    }
543
-
544
-    /**
545
-     * @return GridLines
546
-     */
547
-    public function gridLines()
548
-    {
549
-        if (is_null($this->gridLines)) {
550
-            $this->gridLines = new GridLines();
551
-        }
552
-
553
-        return $this->gridLines;
554
-    }
555
-
556
-    /**
557
-     * @return ScaleLabel
558
-     */
559
-    public function getScaleLabel()
560
-    {
561
-        return $this->scaleLabel;
562
-    }
563
-
564
-    /**
565
-     * @return ScaleLabel
566
-     */
567
-    public function scaleLabel()
568
-    {
569
-        if (is_null($this->scaleLabel)) {
570
-            $this->scaleLabel = new ScaleLabel();
571
-        }
572
-
573
-        return $this->scaleLabel;
574
-    }
575
-
576
-    /**
577
-     * @return Ticks
578
-     */
579
-    public function getTicks()
580
-    {
581
-        return $this->ticks;
582
-    }
583
-
584
-    /**
585
-     * @return Ticks
586
-     */
587
-    public function ticks()
588
-    {
589
-        if (is_null($this->ticks)) {
590
-            $this->ticks = new Ticks();
591
-        }
592
-
593
-        return $this->ticks;
594
-    }
595
-
596
-    /**
597
-     * @return array
598
-     */
599
-    public function jsonSerialize()
600
-    {
601
-        return $this->getArrayCopy();
602
-    }
19
+	use ArraySerializable;
20
+
21
+	/**
22
+	 * @var string
23
+	 */
24
+	protected $type;
25
+
26
+	/**
27
+	 * @var bool
28
+	 */
29
+	protected $display;
30
+
31
+	/**
32
+	 * @var string
33
+	 */
34
+	protected $id;
35
+
36
+	/**
37
+	 * @var bool
38
+	 */
39
+	protected $stacked;
40
+
41
+	/**
42
+	 * @var int
43
+	 */
44
+	protected $barThickness;
45
+
46
+	/**
47
+	 * @var string
48
+	 */
49
+	protected $position;
50
+
51
+	/**
52
+	 * @var string
53
+	 */
54
+	protected $beforeUpdate;
55
+
56
+	/**
57
+	 * @var string
58
+	 */
59
+	protected $beforeSetDimensions;
60
+
61
+	/**
62
+	 * @var string
63
+	 */
64
+	protected $afterSetDimensions;
65
+
66
+	/**
67
+	 * @var string
68
+	 */
69
+	protected $beforeDataLimits;
70
+
71
+	/**
72
+	 * @var string
73
+	 */
74
+	protected $afterDataLimits;
75
+
76
+	/**
77
+	 * @var string
78
+	 */
79
+	protected $beforeBuildTicks;
80
+
81
+	/**
82
+	 * @var string
83
+	 */
84
+	protected $afterBuildTicks;
85
+
86
+	/**
87
+	 * @var string
88
+	 */
89
+	protected $beforeTickToLabelConversion;
90
+
91
+	/**
92
+	 * @var string
93
+	 */
94
+	protected $afterTickToLabelConversion;
95
+
96
+	/**
97
+	 * @var string
98
+	 */
99
+	protected $beforeCalculateTickRotation;
100
+
101
+	/**
102
+	 * @var string
103
+	 */
104
+	protected $afterCalculateTickRotation;
105
+
106
+	/**
107
+	 * @var string
108
+	 */
109
+	protected $beforeFit;
110
+
111
+	/**
112
+	 * @var string
113
+	 */
114
+	protected $afterFit;
115
+
116
+	/**
117
+	 * @var string
118
+	 */
119
+	protected $afterUpdate;
120
+
121
+	/**
122
+	 * @var GridLines
123
+	 */
124
+	protected $gridLines;
125
+
126
+	/**
127
+	 * @var ScaleLabel
128
+	 */
129
+	protected $scaleLabel;
130
+
131
+	/**
132
+	 * @var Ticks
133
+	 */
134
+	protected $ticks;
135
+
136
+	/**
137
+	 * @return string
138
+	 */
139
+	public function getType()
140
+	{
141
+		return $this->type;
142
+	}
143
+
144
+	/**
145
+	 * @param string $type
146
+	 *
147
+	 * @return $this
148
+	 */
149
+	public function setType($type)
150
+	{
151
+		$this->type = $type;
152
+
153
+		return $this;
154
+	}
155
+
156
+	/**
157
+	 * @return bool
158
+	 */
159
+	public function isDisplay()
160
+	{
161
+		return $this->display;
162
+	}
163
+
164
+	/**
165
+	 * @param bool $display
166
+	 *
167
+	 * @return $this
168
+	 */
169
+	public function setDisplay($display)
170
+	{
171
+		$this->display = $display;
172
+
173
+		return $this;
174
+	}
175
+
176
+	/**
177
+	 * @return string
178
+	 */
179
+	public function getId()
180
+	{
181
+		return $this->id;
182
+	}
183
+
184
+	/**
185
+	 * @param string $id
186
+	 *
187
+	 * @return $this
188
+	 */
189
+	public function setId($id)
190
+	{
191
+		$this->id = strval($id);
192
+
193
+		return $this;
194
+	}
195
+
196
+	/**
197
+	 * @return bool
198
+	 */
199
+	public function isStacked()
200
+	{
201
+		return $this->stacked;
202
+	}
203
+
204
+	/**
205
+	 * @param bool $stacked
206
+	 *
207
+	 * @return $this
208
+	 */
209
+	public function setStacked($stacked)
210
+	{
211
+		$this->stacked = ! ! $stacked;
212
+
213
+		return $this;
214
+	}
215
+
216
+	/**
217
+	 * @return int
218
+	 */
219
+	public function getBarThickness()
220
+	{
221
+		return $this->barThickness;
222
+	}
223
+
224
+	/**
225
+	 * @param int $barThickness
226
+	 *
227
+	 * @return $this
228
+	 */
229
+	public function setBarThickness($barThickness)
230
+	{
231
+		$this->barThickness = intval($barThickness);
232
+
233
+		return $this;
234
+	}
235
+
236
+	/**
237
+	 * @return string
238
+	 */
239
+	public function getPosition()
240
+	{
241
+		return $this->position;
242
+	}
243
+
244
+	/**
245
+	 * @param string $position
246
+	 *
247
+	 * @return $this
248
+	 */
249
+	public function setPosition($position)
250
+	{
251
+		$this->position = strval($position);
252
+
253
+		return $this;
254
+	}
255
+
256
+	/**
257
+	 * @return string
258
+	 */
259
+	public function getBeforeUpdate()
260
+	{
261
+		return $this->beforeUpdate;
262
+	}
263
+
264
+	/**
265
+	 * @param string $beforeUpdate
266
+	 *
267
+	 * @return $this
268
+	 */
269
+	public function setBeforeUpdate($beforeUpdate)
270
+	{
271
+		$this->beforeUpdate = strval($beforeUpdate);
272
+
273
+		return $this;
274
+	}
275
+
276
+	/**
277
+	 * @return string
278
+	 */
279
+	public function getBeforeSetDimensions()
280
+	{
281
+		return $this->beforeSetDimensions;
282
+	}
283
+
284
+	/**
285
+	 * @param string $beforeSetDimensions
286
+	 *
287
+	 * @return $this
288
+	 */
289
+	public function setBeforeSetDimensions($beforeSetDimensions)
290
+	{
291
+		$this->beforeSetDimensions = strval($beforeSetDimensions);
292
+
293
+		return $this;
294
+	}
295
+
296
+	/**
297
+	 * @return string
298
+	 */
299
+	public function getAfterSetDimensions()
300
+	{
301
+		return $this->afterSetDimensions;
302
+	}
303
+
304
+	/**
305
+	 * @param string $afterSetDimensions
306
+	 *
307
+	 * @return $this
308
+	 */
309
+	public function setAfterSetDimensions($afterSetDimensions)
310
+	{
311
+		$this->afterSetDimensions = strval($afterSetDimensions);
312
+
313
+		return $this;
314
+	}
315
+
316
+	/**
317
+	 * @return string
318
+	 */
319
+	public function getBeforeDataLimits()
320
+	{
321
+		return $this->beforeDataLimits;
322
+	}
323
+
324
+	/**
325
+	 * @param string $beforeDataLimits
326
+	 *
327
+	 * @return $this
328
+	 */
329
+	public function setBeforeDataLimits($beforeDataLimits)
330
+	{
331
+		$this->beforeDataLimits = strval($beforeDataLimits);
332
+
333
+		return $this;
334
+	}
335
+
336
+	/**
337
+	 * @return string
338
+	 */
339
+	public function getAfterDataLimits()
340
+	{
341
+		return $this->afterDataLimits;
342
+	}
343
+
344
+	/**
345
+	 * @param string $afterDataLimits
346
+	 *
347
+	 * @return $this
348
+	 */
349
+	public function setAfterDataLimits($afterDataLimits)
350
+	{
351
+		$this->afterDataLimits = strval($afterDataLimits);
352
+
353
+		return $this;
354
+	}
355
+
356
+	/**
357
+	 * @return string
358
+	 */
359
+	public function getBeforeBuildTicks()
360
+	{
361
+		return $this->beforeBuildTicks;
362
+	}
363
+
364
+	/**
365
+	 * @param string $beforeBuildTicks
366
+	 *
367
+	 * @return $this
368
+	 */
369
+	public function setBeforeBuildTicks($beforeBuildTicks)
370
+	{
371
+		$this->beforeBuildTicks = strval($beforeBuildTicks);
372
+
373
+		return $this;
374
+	}
375
+
376
+	/**
377
+	 * @return string
378
+	 */
379
+	public function getAfterBuildTicks()
380
+	{
381
+		return $this->afterBuildTicks;
382
+	}
383
+
384
+	/**
385
+	 * @param string $afterBuildTicks
386
+	 *
387
+	 * @return $this
388
+	 */
389
+	public function setAfterBuildTicks($afterBuildTicks)
390
+	{
391
+		$this->afterBuildTicks = strval($afterBuildTicks);
392
+
393
+		return $this;
394
+	}
395
+
396
+	/**
397
+	 * @return string
398
+	 */
399
+	public function getBeforeTickToLabelConversion()
400
+	{
401
+		return $this->beforeTickToLabelConversion;
402
+	}
403
+
404
+	/**
405
+	 * @param string $beforeTickToLabelConversion
406
+	 *
407
+	 * @return $this
408
+	 */
409
+	public function setBeforeTickToLabelConversion($beforeTickToLabelConversion)
410
+	{
411
+		$this->beforeTickToLabelConversion = strval($beforeTickToLabelConversion);
412
+
413
+		return $this;
414
+	}
415
+
416
+	/**
417
+	 * @return string
418
+	 */
419
+	public function getAfterTickToLabelConversion()
420
+	{
421
+		return $this->afterTickToLabelConversion;
422
+	}
423
+
424
+	/**
425
+	 * @param string $afterTickToLabelConversion
426
+	 *
427
+	 * @return $this
428
+	 */
429
+	public function setAfterTickToLabelConversion($afterTickToLabelConversion)
430
+	{
431
+		$this->afterTickToLabelConversion = strval($afterTickToLabelConversion);
432
+
433
+		return $this;
434
+	}
435
+
436
+	/**
437
+	 * @return string
438
+	 */
439
+	public function getBeforeCalculateTickRotation()
440
+	{
441
+		return $this->beforeCalculateTickRotation;
442
+	}
443
+
444
+	/**
445
+	 * @param string $beforeCalculateTickRotation
446
+	 *
447
+	 * @return $this
448
+	 */
449
+	public function setBeforeCalculateTickRotation($beforeCalculateTickRotation)
450
+	{
451
+		$this->beforeCalculateTickRotation = strval($beforeCalculateTickRotation);
452
+
453
+		return $this;
454
+	}
455
+
456
+	/**
457
+	 * @return string
458
+	 */
459
+	public function getAfterCalculateTickRotation()
460
+	{
461
+		return $this->afterCalculateTickRotation;
462
+	}
463
+
464
+	/**
465
+	 * @param string $afterCalculateTickRotation
466
+	 *
467
+	 * @return $this
468
+	 */
469
+	public function setAfterCalculateTickRotation($afterCalculateTickRotation)
470
+	{
471
+		$this->afterCalculateTickRotation = strval($afterCalculateTickRotation);
472
+
473
+		return $this;
474
+	}
475
+
476
+	/**
477
+	 * @return string
478
+	 */
479
+	public function getBeforeFit()
480
+	{
481
+		return $this->beforeFit;
482
+	}
483
+
484
+	/**
485
+	 * @param string $beforeFit
486
+	 *
487
+	 * @return $this
488
+	 */
489
+	public function setBeforeFit($beforeFit)
490
+	{
491
+		$this->beforeFit = strval($beforeFit);
492
+
493
+		return $this;
494
+	}
495
+
496
+	/**
497
+	 * @return string
498
+	 */
499
+	public function getAfterFit()
500
+	{
501
+		return $this->afterFit;
502
+	}
503
+
504
+	/**
505
+	 * @param string $afterFit
506
+	 *
507
+	 * @return $this
508
+	 */
509
+	public function setAfterFit($afterFit)
510
+	{
511
+		$this->afterFit = strval($afterFit);
512
+
513
+		return $this;
514
+	}
515
+
516
+	/**
517
+	 * @return string
518
+	 */
519
+	public function getAfterUpdate()
520
+	{
521
+		return $this->afterUpdate;
522
+	}
523
+
524
+	/**
525
+	 * @param string $afterUpdate
526
+	 *
527
+	 * @return $this
528
+	 */
529
+	public function setAfterUpdate($afterUpdate)
530
+	{
531
+		$this->afterUpdate = strval($afterUpdate);
532
+
533
+		return $this;
534
+	}
535
+
536
+	/**
537
+	 * @return GridLines
538
+	 */
539
+	public function getGridLines()
540
+	{
541
+		return $this->gridLines;
542
+	}
543
+
544
+	/**
545
+	 * @return GridLines
546
+	 */
547
+	public function gridLines()
548
+	{
549
+		if (is_null($this->gridLines)) {
550
+			$this->gridLines = new GridLines();
551
+		}
552
+
553
+		return $this->gridLines;
554
+	}
555
+
556
+	/**
557
+	 * @return ScaleLabel
558
+	 */
559
+	public function getScaleLabel()
560
+	{
561
+		return $this->scaleLabel;
562
+	}
563
+
564
+	/**
565
+	 * @return ScaleLabel
566
+	 */
567
+	public function scaleLabel()
568
+	{
569
+		if (is_null($this->scaleLabel)) {
570
+			$this->scaleLabel = new ScaleLabel();
571
+		}
572
+
573
+		return $this->scaleLabel;
574
+	}
575
+
576
+	/**
577
+	 * @return Ticks
578
+	 */
579
+	public function getTicks()
580
+	{
581
+		return $this->ticks;
582
+	}
583
+
584
+	/**
585
+	 * @return Ticks
586
+	 */
587
+	public function ticks()
588
+	{
589
+		if (is_null($this->ticks)) {
590
+			$this->ticks = new Ticks();
591
+		}
592
+
593
+		return $this->ticks;
594
+	}
595
+
596
+	/**
597
+	 * @return array
598
+	 */
599
+	public function jsonSerialize()
600
+	{
601
+		return $this->getArrayCopy();
602
+	}
603 603
 }
Please login to merge, or discard this patch.
src/Options/Tooltips.php 1 patch
Indentation   +801 added lines, -801 removed lines patch added patch discarded remove patch
@@ -15,805 +15,805 @@
 block discarded – undo
15 15
  */
16 16
 class Tooltips implements ArraySerializableInterface, JsonSerializable
17 17
 {
18
-    use ArraySerializable;
19
-
20
-    /**
21
-     * @var bool
22
-     */
23
-    private $enabled;
24
-
25
-    /**
26
-     * @var Expr
27
-     */
28
-    private $custom;
29
-
30
-    /**
31
-     * @var string
32
-     */
33
-    private $mode;
34
-
35
-    /**
36
-     * @var bool
37
-     */
38
-    private $intersect;
39
-
40
-    /**
41
-     * @var string
42
-     */
43
-    private $position;
44
-
45
-    /**
46
-     * @var Expr
47
-     */
48
-    private $itemSort;
49
-
50
-    /**
51
-     * @var Expr
52
-     */
53
-    private $filter;
54
-
55
-    /**
56
-     * @var string
57
-     */
58
-    private $backgroundColor;
59
-
60
-    /**
61
-     * @var string
62
-     */
63
-    private $titleFontFamily;
64
-
65
-    /**
66
-     * @var int
67
-     */
68
-    private $titleFontSize;
69
-
70
-    /**
71
-     * @var string
72
-     */
73
-    private $titleFontStyle;
74
-
75
-    /**
76
-     * @var string
77
-     */
78
-    private $titleFontColor;
79
-
80
-    /**
81
-     * @var int
82
-     */
83
-    private $titleSpacing;
84
-
85
-    /**
86
-     * @var int
87
-     */
88
-    private $titleMarginBottom;
89
-
90
-    /**
91
-     * @var string
92
-     */
93
-    private $bodyFontFamily;
94
-
95
-    /**
96
-     * @var int
97
-     */
98
-    private $bodyFontSize;
99
-
100
-    /**
101
-     * @var string
102
-     */
103
-    private $bodyFontStyle;
104
-
105
-    /**
106
-     * @var string
107
-     */
108
-    private $bodyFontColor;
109
-
110
-    /**
111
-     * @var int
112
-     */
113
-    private $bodySpacing;
114
-
115
-    /**
116
-     * @var string
117
-     */
118
-    private $footerFontFamily;
119
-
120
-    /**
121
-     * @var int
122
-     */
123
-    private $footerFontSize;
124
-
125
-    /**
126
-     * @var string
127
-     */
128
-    private $footerFontStyle;
129
-
130
-    /**
131
-     * @var string
132
-     */
133
-    private $footerFontColor;
134
-
135
-    /**
136
-     * @var int
137
-     */
138
-    private $footerSpacing;
139
-
140
-    /**
141
-     * @var int
142
-     */
143
-    private $footerMarginTop;
144
-
145
-    /**
146
-     * @var int
147
-     */
148
-    private $xPadding;
149
-
150
-    /**
151
-     * @var int
152
-     */
153
-    private $yPadding;
154
-
155
-    /**
156
-     * @var int
157
-     */
158
-    private $caretSize;
159
-
160
-    /**
161
-     * @var int
162
-     */
163
-    private $cornerRadius;
164
-
165
-    /**
166
-     * @var string
167
-     */
168
-    private $multiKeyBackground;
169
-
170
-    /**
171
-     * @var bool
172
-     */
173
-    private $displayColors;
174
-
175
-    /**
176
-     * @var Callbacks
177
-     */
178
-    private $callbacks;
179
-
180
-    /**
181
-     * @return bool
182
-     */
183
-    public function isEnabled()
184
-    {
185
-        return $this->enabled;
186
-    }
187
-
188
-    /**
189
-     * @param bool $enabled
190
-     *
191
-     * @return $this
192
-     */
193
-    public function setEnabled($enabled)
194
-    {
195
-        $this->enabled = boolval($enabled);
196
-
197
-        return $this;
198
-    }
199
-
200
-    /**
201
-     * @return \Zend\Json\Expr
202
-     */
203
-    public function getCustom()
204
-    {
205
-        return $this->custom;
206
-    }
207
-
208
-    /**
209
-     * @param \Zend\Json\Expr $custom
210
-     *
211
-     * @return $this
212
-     */
213
-    public function setCustom($custom)
214
-    {
215
-        $this->custom = $custom;
216
-
217
-        return $this;
218
-    }
219
-
220
-    /**
221
-     * @return string
222
-     */
223
-    public function getMode()
224
-    {
225
-        return $this->mode;
226
-    }
227
-
228
-    /**
229
-     * @param string $mode
230
-     *
231
-     * @return $this
232
-     */
233
-    public function setMode($mode)
234
-    {
235
-        $this->mode = strval($mode);
236
-
237
-        return $this;
238
-    }
239
-
240
-    /**
241
-     * @return bool
242
-     */
243
-    public function isIntersect()
244
-    {
245
-        return $this->intersect;
246
-    }
247
-
248
-    /**
249
-     * @param bool $intersect
250
-     *
251
-     * @return $this
252
-     */
253
-    public function setIntersect($intersect)
254
-    {
255
-        $this->intersect = boolval($intersect);
256
-
257
-        return $this;
258
-    }
259
-
260
-    /**
261
-     * @return string
262
-     */
263
-    public function getPosition()
264
-    {
265
-        return $this->position;
266
-    }
267
-
268
-    /**
269
-     * @param string $position
270
-     *
271
-     * @return $this
272
-     */
273
-    public function setPosition($position)
274
-    {
275
-        $this->position = strval($position);
276
-
277
-        return $this;
278
-    }
279
-
280
-    /**
281
-     * @return Expr
282
-     */
283
-    public function getItemSort()
284
-    {
285
-        return $this->itemSort;
286
-    }
287
-
288
-    /**
289
-     * @param Expr $itemSort
290
-     *
291
-     * @return $this
292
-     */
293
-    public function setItemSort($itemSort)
294
-    {
295
-        $this->itemSort = new Expr(strval($itemSort));
296
-
297
-        return $this;
298
-    }
299
-
300
-    /**
301
-     * @return Expr
302
-     */
303
-    public function getFilter()
304
-    {
305
-        return $this->filter;
306
-    }
307
-
308
-    /**
309
-     * @param Expr $filter
310
-     *
311
-     * @return $this
312
-     */
313
-    public function setFilter($filter)
314
-    {
315
-        $this->filter = new Expr(strval($filter));
316
-
317
-        return $this;
318
-    }
319
-
320
-    /**
321
-     * @return string
322
-     */
323
-    public function getBackgroundColor()
324
-    {
325
-        return $this->backgroundColor;
326
-    }
327
-
328
-    /**
329
-     * @param string $backgroundColor
330
-     *
331
-     * @return $this
332
-     */
333
-    public function setBackgroundColor($backgroundColor)
334
-    {
335
-        $this->backgroundColor = strval($backgroundColor);
336
-
337
-        return $this;
338
-    }
339
-
340
-    /**
341
-     * @return string
342
-     */
343
-    public function getTitleFontFamily()
344
-    {
345
-        return $this->titleFontFamily;
346
-    }
347
-
348
-    /**
349
-     * @param string $titleFontFamily
350
-     *
351
-     * @return $this
352
-     */
353
-    public function setTitleFontFamily($titleFontFamily)
354
-    {
355
-        $this->titleFontFamily = strval($titleFontFamily);
356
-
357
-        return $this;
358
-    }
359
-
360
-    /**
361
-     * @return int
362
-     */
363
-    public function getTitleFontSize()
364
-    {
365
-        return $this->titleFontSize;
366
-    }
367
-
368
-    /**
369
-     * @param int $titleFontSize
370
-     *
371
-     * @return $this
372
-     */
373
-    public function setTitleFontSize($titleFontSize)
374
-    {
375
-        $this->titleFontSize = intval($titleFontSize);
376
-
377
-        return $this;
378
-    }
379
-
380
-    /**
381
-     * @return string
382
-     */
383
-    public function getTitleFontStyle()
384
-    {
385
-        return $this->titleFontStyle;
386
-    }
387
-
388
-    /**
389
-     * @param string $titleFontStyle
390
-     *
391
-     * @return $this
392
-     */
393
-    public function setTitleFontStyle($titleFontStyle)
394
-    {
395
-        $this->titleFontStyle = strval($titleFontStyle);
396
-
397
-        return $this;
398
-    }
399
-
400
-    /**
401
-     * @return string
402
-     */
403
-    public function getTitleFontColor()
404
-    {
405
-        return $this->titleFontColor;
406
-    }
407
-
408
-    /**
409
-     * @param string $titleFontColor
410
-     *
411
-     * @return $this
412
-     */
413
-    public function setTitleFontColor($titleFontColor)
414
-    {
415
-        $this->titleFontColor = strval($titleFontColor);
416
-
417
-        return $this;
418
-    }
419
-
420
-    /**
421
-     * @return int
422
-     */
423
-    public function getTitleSpacing()
424
-    {
425
-        return $this->titleSpacing;
426
-    }
427
-
428
-    /**
429
-     * @param int $titleSpacing
430
-     *
431
-     * @return $this
432
-     */
433
-    public function setTitleSpacing($titleSpacing)
434
-    {
435
-        $this->titleSpacing = intval($titleSpacing);
436
-
437
-        return $this;
438
-    }
439
-
440
-    /**
441
-     * @return int
442
-     */
443
-    public function getTitleMarginBottom()
444
-    {
445
-        return $this->titleMarginBottom;
446
-    }
447
-
448
-    /**
449
-     * @param int $titleMarginBottom
450
-     *
451
-     * @return $this
452
-     */
453
-    public function setTitleMarginBottom($titleMarginBottom)
454
-    {
455
-        $this->titleMarginBottom = intval($titleMarginBottom);
456
-
457
-        return $this;
458
-    }
459
-
460
-    /**
461
-     * @return string
462
-     */
463
-    public function getBodyFontFamily()
464
-    {
465
-        return $this->bodyFontFamily;
466
-    }
467
-
468
-    /**
469
-     * @param string $bodyFontFamily
470
-     *
471
-     * @return $this
472
-     */
473
-    public function setBodyFontFamily($bodyFontFamily)
474
-    {
475
-        $this->bodyFontFamily = strval($bodyFontFamily);
476
-
477
-        return $this;
478
-    }
479
-
480
-    /**
481
-     * @return int
482
-     */
483
-    public function getBodyFontSize()
484
-    {
485
-        return $this->bodyFontSize;
486
-    }
487
-
488
-    /**
489
-     * @param int $bodyFontSize
490
-     *
491
-     * @return $this
492
-     */
493
-    public function setBodyFontSize($bodyFontSize)
494
-    {
495
-        $this->bodyFontSize = intval($bodyFontSize);
496
-
497
-        return $this;
498
-    }
499
-
500
-    /**
501
-     * @return string
502
-     */
503
-    public function getBodyFontStyle()
504
-    {
505
-        return $this->bodyFontStyle;
506
-    }
507
-
508
-    /**
509
-     * @param string $bodyFontStyle
510
-     *
511
-     * @return $this
512
-     */
513
-    public function setBodyFontStyle($bodyFontStyle)
514
-    {
515
-        $this->bodyFontStyle = strval($bodyFontStyle);
516
-
517
-        return $this;
518
-    }
519
-
520
-    /**
521
-     * @return string
522
-     */
523
-    public function getBodyFontColor()
524
-    {
525
-        return $this->bodyFontColor;
526
-    }
527
-
528
-    /**
529
-     * @param string $bodyFontColor
530
-     *
531
-     * @return $this
532
-     */
533
-    public function setBodyFontColor($bodyFontColor)
534
-    {
535
-        $this->bodyFontColor = strval($bodyFontColor);
536
-
537
-        return $this;
538
-    }
539
-
540
-    /**
541
-     * @return int
542
-     */
543
-    public function getBodySpacing()
544
-    {
545
-        return $this->bodySpacing;
546
-    }
547
-
548
-    /**
549
-     * @param int $bodySpacing
550
-     *
551
-     * @return $this
552
-     */
553
-    public function setBodySpacing($bodySpacing)
554
-    {
555
-        $this->bodySpacing = intval($bodySpacing);
556
-
557
-        return $this;
558
-    }
559
-
560
-    /**
561
-     * @return string
562
-     */
563
-    public function getFooterFontFamily()
564
-    {
565
-        return $this->footerFontFamily;
566
-    }
567
-
568
-    /**
569
-     * @param string $footerFontFamily
570
-     *
571
-     * @return $this
572
-     */
573
-    public function setFooterFontFamily($footerFontFamily)
574
-    {
575
-        $this->footerFontFamily = strval($footerFontFamily);
576
-
577
-        return $this;
578
-    }
579
-
580
-    /**
581
-     * @return int
582
-     */
583
-    public function getFooterFontSize()
584
-    {
585
-        return $this->footerFontSize;
586
-    }
587
-
588
-    /**
589
-     * @param int $footerFontSize
590
-     *
591
-     * @return $this
592
-     */
593
-    public function setFooterFontSize($footerFontSize)
594
-    {
595
-        $this->footerFontSize = intval($footerFontSize);
596
-
597
-        return $this;
598
-    }
599
-
600
-    /**
601
-     * @return string
602
-     */
603
-    public function getFooterFontStyle()
604
-    {
605
-        return $this->footerFontStyle;
606
-    }
607
-
608
-    /**
609
-     * @param string $footerFontStyle
610
-     *
611
-     * @return $this
612
-     */
613
-    public function setFooterFontStyle($footerFontStyle)
614
-    {
615
-        $this->footerFontStyle = strval($footerFontStyle);
616
-
617
-        return $this;
618
-    }
619
-
620
-    /**
621
-     * @return string
622
-     */
623
-    public function getFooterFontColor()
624
-    {
625
-        return $this->footerFontColor;
626
-    }
627
-
628
-    /**
629
-     * @param string $footerFontColor
630
-     *
631
-     * @return $this
632
-     */
633
-    public function setFooterFontColor($footerFontColor)
634
-    {
635
-        $this->footerFontColor = strval($footerFontColor);
636
-
637
-        return $this;
638
-    }
639
-
640
-    /**
641
-     * @return int
642
-     */
643
-    public function getFooterSpacing()
644
-    {
645
-        return $this->footerSpacing;
646
-    }
647
-
648
-    /**
649
-     * @param int $footerSpacing
650
-     *
651
-     * @return $this
652
-     */
653
-    public function setFooterSpacing($footerSpacing)
654
-    {
655
-        $this->footerSpacing = intval($footerSpacing);
656
-
657
-        return $this;
658
-    }
659
-
660
-    /**
661
-     * @return int
662
-     */
663
-    public function getFooterMarginTop()
664
-    {
665
-        return $this->footerMarginTop;
666
-    }
667
-
668
-    /**
669
-     * @param int $footerMarginTop
670
-     *
671
-     * @return $this
672
-     */
673
-    public function setFooterMarginTop($footerMarginTop)
674
-    {
675
-        $this->footerMarginTop = intval($footerMarginTop);
676
-
677
-        return $this;
678
-    }
679
-
680
-    /**
681
-     * @return int
682
-     */
683
-    public function getXPadding()
684
-    {
685
-        return $this->xPadding;
686
-    }
687
-
688
-    /**
689
-     * @param int $xPadding
690
-     *
691
-     * @return $this
692
-     */
693
-    public function setXPadding($xPadding)
694
-    {
695
-        $this->xPadding = intval($xPadding);
696
-
697
-        return $this;
698
-    }
699
-
700
-    /**
701
-     * @return int
702
-     */
703
-    public function getYPadding()
704
-    {
705
-        return $this->yPadding;
706
-    }
707
-
708
-    /**
709
-     * @param int $yPadding
710
-     *
711
-     * @return $this
712
-     */
713
-    public function setYPadding($yPadding)
714
-    {
715
-        $this->yPadding = intval($yPadding);
716
-
717
-        return $this;
718
-    }
719
-
720
-    /**
721
-     * @return int
722
-     */
723
-    public function getCaretSize()
724
-    {
725
-        return $this->caretSize;
726
-    }
727
-
728
-    /**
729
-     * @param int $caretSize
730
-     *
731
-     * @return $this
732
-     */
733
-    public function setCaretSize($caretSize)
734
-    {
735
-        $this->caretSize = intval($caretSize);
736
-
737
-        return $this;
738
-    }
739
-
740
-    /**
741
-     * @return int
742
-     */
743
-    public function getCornerRadius()
744
-    {
745
-        return $this->cornerRadius;
746
-    }
747
-
748
-    /**
749
-     * @param int $cornerRadius
750
-     *
751
-     * @return $this
752
-     */
753
-    public function setCornerRadius($cornerRadius)
754
-    {
755
-        $this->cornerRadius = intval($cornerRadius);
756
-
757
-        return $this;
758
-    }
759
-
760
-    /**
761
-     * @return string
762
-     */
763
-    public function getMultiKeyBackground()
764
-    {
765
-        return $this->multiKeyBackground;
766
-    }
767
-
768
-    /**
769
-     * @param string $multiKeyBackground
770
-     *
771
-     * @return $this
772
-     */
773
-    public function setMultiKeyBackground($multiKeyBackground)
774
-    {
775
-        $this->multiKeyBackground = strval($multiKeyBackground);
776
-
777
-        return $this;
778
-    }
779
-
780
-    /**
781
-     * @return bool
782
-     */
783
-    public function isDisplayColors()
784
-    {
785
-        return $this->displayColors;
786
-    }
787
-
788
-    /**
789
-     * @param bool $displayColors
790
-     *
791
-     * @return $this
792
-     */
793
-    public function setDisplayColors($displayColors)
794
-    {
795
-        $this->displayColors = boolval($displayColors);
796
-
797
-        return $this;
798
-    }
799
-
800
-    /**
801
-     * @return Callbacks
802
-     */
803
-    public function callbacks()
804
-    {
805
-        if (is_null($this->callbacks)) {
806
-            $this->callbacks = new Callbacks();
807
-        }
808
-
809
-        return $this->callbacks;
810
-    }
811
-
812
-    /**
813
-     * @return array
814
-     */
815
-    public function jsonSerialize()
816
-    {
817
-        return $this->getArrayCopy();
818
-    }
18
+	use ArraySerializable;
19
+
20
+	/**
21
+	 * @var bool
22
+	 */
23
+	private $enabled;
24
+
25
+	/**
26
+	 * @var Expr
27
+	 */
28
+	private $custom;
29
+
30
+	/**
31
+	 * @var string
32
+	 */
33
+	private $mode;
34
+
35
+	/**
36
+	 * @var bool
37
+	 */
38
+	private $intersect;
39
+
40
+	/**
41
+	 * @var string
42
+	 */
43
+	private $position;
44
+
45
+	/**
46
+	 * @var Expr
47
+	 */
48
+	private $itemSort;
49
+
50
+	/**
51
+	 * @var Expr
52
+	 */
53
+	private $filter;
54
+
55
+	/**
56
+	 * @var string
57
+	 */
58
+	private $backgroundColor;
59
+
60
+	/**
61
+	 * @var string
62
+	 */
63
+	private $titleFontFamily;
64
+
65
+	/**
66
+	 * @var int
67
+	 */
68
+	private $titleFontSize;
69
+
70
+	/**
71
+	 * @var string
72
+	 */
73
+	private $titleFontStyle;
74
+
75
+	/**
76
+	 * @var string
77
+	 */
78
+	private $titleFontColor;
79
+
80
+	/**
81
+	 * @var int
82
+	 */
83
+	private $titleSpacing;
84
+
85
+	/**
86
+	 * @var int
87
+	 */
88
+	private $titleMarginBottom;
89
+
90
+	/**
91
+	 * @var string
92
+	 */
93
+	private $bodyFontFamily;
94
+
95
+	/**
96
+	 * @var int
97
+	 */
98
+	private $bodyFontSize;
99
+
100
+	/**
101
+	 * @var string
102
+	 */
103
+	private $bodyFontStyle;
104
+
105
+	/**
106
+	 * @var string
107
+	 */
108
+	private $bodyFontColor;
109
+
110
+	/**
111
+	 * @var int
112
+	 */
113
+	private $bodySpacing;
114
+
115
+	/**
116
+	 * @var string
117
+	 */
118
+	private $footerFontFamily;
119
+
120
+	/**
121
+	 * @var int
122
+	 */
123
+	private $footerFontSize;
124
+
125
+	/**
126
+	 * @var string
127
+	 */
128
+	private $footerFontStyle;
129
+
130
+	/**
131
+	 * @var string
132
+	 */
133
+	private $footerFontColor;
134
+
135
+	/**
136
+	 * @var int
137
+	 */
138
+	private $footerSpacing;
139
+
140
+	/**
141
+	 * @var int
142
+	 */
143
+	private $footerMarginTop;
144
+
145
+	/**
146
+	 * @var int
147
+	 */
148
+	private $xPadding;
149
+
150
+	/**
151
+	 * @var int
152
+	 */
153
+	private $yPadding;
154
+
155
+	/**
156
+	 * @var int
157
+	 */
158
+	private $caretSize;
159
+
160
+	/**
161
+	 * @var int
162
+	 */
163
+	private $cornerRadius;
164
+
165
+	/**
166
+	 * @var string
167
+	 */
168
+	private $multiKeyBackground;
169
+
170
+	/**
171
+	 * @var bool
172
+	 */
173
+	private $displayColors;
174
+
175
+	/**
176
+	 * @var Callbacks
177
+	 */
178
+	private $callbacks;
179
+
180
+	/**
181
+	 * @return bool
182
+	 */
183
+	public function isEnabled()
184
+	{
185
+		return $this->enabled;
186
+	}
187
+
188
+	/**
189
+	 * @param bool $enabled
190
+	 *
191
+	 * @return $this
192
+	 */
193
+	public function setEnabled($enabled)
194
+	{
195
+		$this->enabled = boolval($enabled);
196
+
197
+		return $this;
198
+	}
199
+
200
+	/**
201
+	 * @return \Zend\Json\Expr
202
+	 */
203
+	public function getCustom()
204
+	{
205
+		return $this->custom;
206
+	}
207
+
208
+	/**
209
+	 * @param \Zend\Json\Expr $custom
210
+	 *
211
+	 * @return $this
212
+	 */
213
+	public function setCustom($custom)
214
+	{
215
+		$this->custom = $custom;
216
+
217
+		return $this;
218
+	}
219
+
220
+	/**
221
+	 * @return string
222
+	 */
223
+	public function getMode()
224
+	{
225
+		return $this->mode;
226
+	}
227
+
228
+	/**
229
+	 * @param string $mode
230
+	 *
231
+	 * @return $this
232
+	 */
233
+	public function setMode($mode)
234
+	{
235
+		$this->mode = strval($mode);
236
+
237
+		return $this;
238
+	}
239
+
240
+	/**
241
+	 * @return bool
242
+	 */
243
+	public function isIntersect()
244
+	{
245
+		return $this->intersect;
246
+	}
247
+
248
+	/**
249
+	 * @param bool $intersect
250
+	 *
251
+	 * @return $this
252
+	 */
253
+	public function setIntersect($intersect)
254
+	{
255
+		$this->intersect = boolval($intersect);
256
+
257
+		return $this;
258
+	}
259
+
260
+	/**
261
+	 * @return string
262
+	 */
263
+	public function getPosition()
264
+	{
265
+		return $this->position;
266
+	}
267
+
268
+	/**
269
+	 * @param string $position
270
+	 *
271
+	 * @return $this
272
+	 */
273
+	public function setPosition($position)
274
+	{
275
+		$this->position = strval($position);
276
+
277
+		return $this;
278
+	}
279
+
280
+	/**
281
+	 * @return Expr
282
+	 */
283
+	public function getItemSort()
284
+	{
285
+		return $this->itemSort;
286
+	}
287
+
288
+	/**
289
+	 * @param Expr $itemSort
290
+	 *
291
+	 * @return $this
292
+	 */
293
+	public function setItemSort($itemSort)
294
+	{
295
+		$this->itemSort = new Expr(strval($itemSort));
296
+
297
+		return $this;
298
+	}
299
+
300
+	/**
301
+	 * @return Expr
302
+	 */
303
+	public function getFilter()
304
+	{
305
+		return $this->filter;
306
+	}
307
+
308
+	/**
309
+	 * @param Expr $filter
310
+	 *
311
+	 * @return $this
312
+	 */
313
+	public function setFilter($filter)
314
+	{
315
+		$this->filter = new Expr(strval($filter));
316
+
317
+		return $this;
318
+	}
319
+
320
+	/**
321
+	 * @return string
322
+	 */
323
+	public function getBackgroundColor()
324
+	{
325
+		return $this->backgroundColor;
326
+	}
327
+
328
+	/**
329
+	 * @param string $backgroundColor
330
+	 *
331
+	 * @return $this
332
+	 */
333
+	public function setBackgroundColor($backgroundColor)
334
+	{
335
+		$this->backgroundColor = strval($backgroundColor);
336
+
337
+		return $this;
338
+	}
339
+
340
+	/**
341
+	 * @return string
342
+	 */
343
+	public function getTitleFontFamily()
344
+	{
345
+		return $this->titleFontFamily;
346
+	}
347
+
348
+	/**
349
+	 * @param string $titleFontFamily
350
+	 *
351
+	 * @return $this
352
+	 */
353
+	public function setTitleFontFamily($titleFontFamily)
354
+	{
355
+		$this->titleFontFamily = strval($titleFontFamily);
356
+
357
+		return $this;
358
+	}
359
+
360
+	/**
361
+	 * @return int
362
+	 */
363
+	public function getTitleFontSize()
364
+	{
365
+		return $this->titleFontSize;
366
+	}
367
+
368
+	/**
369
+	 * @param int $titleFontSize
370
+	 *
371
+	 * @return $this
372
+	 */
373
+	public function setTitleFontSize($titleFontSize)
374
+	{
375
+		$this->titleFontSize = intval($titleFontSize);
376
+
377
+		return $this;
378
+	}
379
+
380
+	/**
381
+	 * @return string
382
+	 */
383
+	public function getTitleFontStyle()
384
+	{
385
+		return $this->titleFontStyle;
386
+	}
387
+
388
+	/**
389
+	 * @param string $titleFontStyle
390
+	 *
391
+	 * @return $this
392
+	 */
393
+	public function setTitleFontStyle($titleFontStyle)
394
+	{
395
+		$this->titleFontStyle = strval($titleFontStyle);
396
+
397
+		return $this;
398
+	}
399
+
400
+	/**
401
+	 * @return string
402
+	 */
403
+	public function getTitleFontColor()
404
+	{
405
+		return $this->titleFontColor;
406
+	}
407
+
408
+	/**
409
+	 * @param string $titleFontColor
410
+	 *
411
+	 * @return $this
412
+	 */
413
+	public function setTitleFontColor($titleFontColor)
414
+	{
415
+		$this->titleFontColor = strval($titleFontColor);
416
+
417
+		return $this;
418
+	}
419
+
420
+	/**
421
+	 * @return int
422
+	 */
423
+	public function getTitleSpacing()
424
+	{
425
+		return $this->titleSpacing;
426
+	}
427
+
428
+	/**
429
+	 * @param int $titleSpacing
430
+	 *
431
+	 * @return $this
432
+	 */
433
+	public function setTitleSpacing($titleSpacing)
434
+	{
435
+		$this->titleSpacing = intval($titleSpacing);
436
+
437
+		return $this;
438
+	}
439
+
440
+	/**
441
+	 * @return int
442
+	 */
443
+	public function getTitleMarginBottom()
444
+	{
445
+		return $this->titleMarginBottom;
446
+	}
447
+
448
+	/**
449
+	 * @param int $titleMarginBottom
450
+	 *
451
+	 * @return $this
452
+	 */
453
+	public function setTitleMarginBottom($titleMarginBottom)
454
+	{
455
+		$this->titleMarginBottom = intval($titleMarginBottom);
456
+
457
+		return $this;
458
+	}
459
+
460
+	/**
461
+	 * @return string
462
+	 */
463
+	public function getBodyFontFamily()
464
+	{
465
+		return $this->bodyFontFamily;
466
+	}
467
+
468
+	/**
469
+	 * @param string $bodyFontFamily
470
+	 *
471
+	 * @return $this
472
+	 */
473
+	public function setBodyFontFamily($bodyFontFamily)
474
+	{
475
+		$this->bodyFontFamily = strval($bodyFontFamily);
476
+
477
+		return $this;
478
+	}
479
+
480
+	/**
481
+	 * @return int
482
+	 */
483
+	public function getBodyFontSize()
484
+	{
485
+		return $this->bodyFontSize;
486
+	}
487
+
488
+	/**
489
+	 * @param int $bodyFontSize
490
+	 *
491
+	 * @return $this
492
+	 */
493
+	public function setBodyFontSize($bodyFontSize)
494
+	{
495
+		$this->bodyFontSize = intval($bodyFontSize);
496
+
497
+		return $this;
498
+	}
499
+
500
+	/**
501
+	 * @return string
502
+	 */
503
+	public function getBodyFontStyle()
504
+	{
505
+		return $this->bodyFontStyle;
506
+	}
507
+
508
+	/**
509
+	 * @param string $bodyFontStyle
510
+	 *
511
+	 * @return $this
512
+	 */
513
+	public function setBodyFontStyle($bodyFontStyle)
514
+	{
515
+		$this->bodyFontStyle = strval($bodyFontStyle);
516
+
517
+		return $this;
518
+	}
519
+
520
+	/**
521
+	 * @return string
522
+	 */
523
+	public function getBodyFontColor()
524
+	{
525
+		return $this->bodyFontColor;
526
+	}
527
+
528
+	/**
529
+	 * @param string $bodyFontColor
530
+	 *
531
+	 * @return $this
532
+	 */
533
+	public function setBodyFontColor($bodyFontColor)
534
+	{
535
+		$this->bodyFontColor = strval($bodyFontColor);
536
+
537
+		return $this;
538
+	}
539
+
540
+	/**
541
+	 * @return int
542
+	 */
543
+	public function getBodySpacing()
544
+	{
545
+		return $this->bodySpacing;
546
+	}
547
+
548
+	/**
549
+	 * @param int $bodySpacing
550
+	 *
551
+	 * @return $this
552
+	 */
553
+	public function setBodySpacing($bodySpacing)
554
+	{
555
+		$this->bodySpacing = intval($bodySpacing);
556
+
557
+		return $this;
558
+	}
559
+
560
+	/**
561
+	 * @return string
562
+	 */
563
+	public function getFooterFontFamily()
564
+	{
565
+		return $this->footerFontFamily;
566
+	}
567
+
568
+	/**
569
+	 * @param string $footerFontFamily
570
+	 *
571
+	 * @return $this
572
+	 */
573
+	public function setFooterFontFamily($footerFontFamily)
574
+	{
575
+		$this->footerFontFamily = strval($footerFontFamily);
576
+
577
+		return $this;
578
+	}
579
+
580
+	/**
581
+	 * @return int
582
+	 */
583
+	public function getFooterFontSize()
584
+	{
585
+		return $this->footerFontSize;
586
+	}
587
+
588
+	/**
589
+	 * @param int $footerFontSize
590
+	 *
591
+	 * @return $this
592
+	 */
593
+	public function setFooterFontSize($footerFontSize)
594
+	{
595
+		$this->footerFontSize = intval($footerFontSize);
596
+
597
+		return $this;
598
+	}
599
+
600
+	/**
601
+	 * @return string
602
+	 */
603
+	public function getFooterFontStyle()
604
+	{
605
+		return $this->footerFontStyle;
606
+	}
607
+
608
+	/**
609
+	 * @param string $footerFontStyle
610
+	 *
611
+	 * @return $this
612
+	 */
613
+	public function setFooterFontStyle($footerFontStyle)
614
+	{
615
+		$this->footerFontStyle = strval($footerFontStyle);
616
+
617
+		return $this;
618
+	}
619
+
620
+	/**
621
+	 * @return string
622
+	 */
623
+	public function getFooterFontColor()
624
+	{
625
+		return $this->footerFontColor;
626
+	}
627
+
628
+	/**
629
+	 * @param string $footerFontColor
630
+	 *
631
+	 * @return $this
632
+	 */
633
+	public function setFooterFontColor($footerFontColor)
634
+	{
635
+		$this->footerFontColor = strval($footerFontColor);
636
+
637
+		return $this;
638
+	}
639
+
640
+	/**
641
+	 * @return int
642
+	 */
643
+	public function getFooterSpacing()
644
+	{
645
+		return $this->footerSpacing;
646
+	}
647
+
648
+	/**
649
+	 * @param int $footerSpacing
650
+	 *
651
+	 * @return $this
652
+	 */
653
+	public function setFooterSpacing($footerSpacing)
654
+	{
655
+		$this->footerSpacing = intval($footerSpacing);
656
+
657
+		return $this;
658
+	}
659
+
660
+	/**
661
+	 * @return int
662
+	 */
663
+	public function getFooterMarginTop()
664
+	{
665
+		return $this->footerMarginTop;
666
+	}
667
+
668
+	/**
669
+	 * @param int $footerMarginTop
670
+	 *
671
+	 * @return $this
672
+	 */
673
+	public function setFooterMarginTop($footerMarginTop)
674
+	{
675
+		$this->footerMarginTop = intval($footerMarginTop);
676
+
677
+		return $this;
678
+	}
679
+
680
+	/**
681
+	 * @return int
682
+	 */
683
+	public function getXPadding()
684
+	{
685
+		return $this->xPadding;
686
+	}
687
+
688
+	/**
689
+	 * @param int $xPadding
690
+	 *
691
+	 * @return $this
692
+	 */
693
+	public function setXPadding($xPadding)
694
+	{
695
+		$this->xPadding = intval($xPadding);
696
+
697
+		return $this;
698
+	}
699
+
700
+	/**
701
+	 * @return int
702
+	 */
703
+	public function getYPadding()
704
+	{
705
+		return $this->yPadding;
706
+	}
707
+
708
+	/**
709
+	 * @param int $yPadding
710
+	 *
711
+	 * @return $this
712
+	 */
713
+	public function setYPadding($yPadding)
714
+	{
715
+		$this->yPadding = intval($yPadding);
716
+
717
+		return $this;
718
+	}
719
+
720
+	/**
721
+	 * @return int
722
+	 */
723
+	public function getCaretSize()
724
+	{
725
+		return $this->caretSize;
726
+	}
727
+
728
+	/**
729
+	 * @param int $caretSize
730
+	 *
731
+	 * @return $this
732
+	 */
733
+	public function setCaretSize($caretSize)
734
+	{
735
+		$this->caretSize = intval($caretSize);
736
+
737
+		return $this;
738
+	}
739
+
740
+	/**
741
+	 * @return int
742
+	 */
743
+	public function getCornerRadius()
744
+	{
745
+		return $this->cornerRadius;
746
+	}
747
+
748
+	/**
749
+	 * @param int $cornerRadius
750
+	 *
751
+	 * @return $this
752
+	 */
753
+	public function setCornerRadius($cornerRadius)
754
+	{
755
+		$this->cornerRadius = intval($cornerRadius);
756
+
757
+		return $this;
758
+	}
759
+
760
+	/**
761
+	 * @return string
762
+	 */
763
+	public function getMultiKeyBackground()
764
+	{
765
+		return $this->multiKeyBackground;
766
+	}
767
+
768
+	/**
769
+	 * @param string $multiKeyBackground
770
+	 *
771
+	 * @return $this
772
+	 */
773
+	public function setMultiKeyBackground($multiKeyBackground)
774
+	{
775
+		$this->multiKeyBackground = strval($multiKeyBackground);
776
+
777
+		return $this;
778
+	}
779
+
780
+	/**
781
+	 * @return bool
782
+	 */
783
+	public function isDisplayColors()
784
+	{
785
+		return $this->displayColors;
786
+	}
787
+
788
+	/**
789
+	 * @param bool $displayColors
790
+	 *
791
+	 * @return $this
792
+	 */
793
+	public function setDisplayColors($displayColors)
794
+	{
795
+		$this->displayColors = boolval($displayColors);
796
+
797
+		return $this;
798
+	}
799
+
800
+	/**
801
+	 * @return Callbacks
802
+	 */
803
+	public function callbacks()
804
+	{
805
+		if (is_null($this->callbacks)) {
806
+			$this->callbacks = new Callbacks();
807
+		}
808
+
809
+		return $this->callbacks;
810
+	}
811
+
812
+	/**
813
+	 * @return array
814
+	 */
815
+	public function jsonSerialize()
816
+	{
817
+		return $this->getArrayCopy();
818
+	}
819 819
 }
Please login to merge, or discard this patch.
src/Options/Elements.php 1 patch
Indentation   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -17,113 +17,113 @@
 block discarded – undo
17 17
  */
18 18
 class Elements implements ArraySerializableInterface, JsonSerializable
19 19
 {
20
-    use ArraySerializable;
21
-
22
-    /**
23
-     * @var Rectangle
24
-     */
25
-    private $rectangle;
26
-
27
-    /**
28
-     * @var Line
29
-     */
30
-    private $line;
31
-
32
-    /**
33
-     * @var Point
34
-     */
35
-    private $point;
36
-
37
-    /**
38
-     * @var Arc
39
-     */
40
-    private $arc;
41
-
42
-    /**
43
-     * @return Rectangle
44
-     */
45
-    public function getRectangle()
46
-    {
47
-        return $this->rectangle;
48
-    }
49
-
50
-    /**
51
-     * @return Rectangle
52
-     */
53
-    public function rectangle()
54
-    {
55
-        if (is_null($this->rectangle)) {
56
-            $this->rectangle = new Rectangle();
57
-        }
58
-
59
-        return $this->rectangle;
60
-    }
61
-
62
-    /**
63
-     * @return Line
64
-     */
65
-    public function getLine()
66
-    {
67
-        return $this->line;
68
-    }
69
-
70
-    /**
71
-     * @return Line
72
-     */
73
-    public function line()
74
-    {
75
-        if (is_null($this->line)) {
76
-            $this->line = new Line();
77
-        }
78
-
79
-        return $this->line;
80
-    }
81
-
82
-    /**
83
-     * @return Point
84
-     */
85
-    public function getPoint()
86
-    {
87
-        return $this->point;
88
-    }
89
-
90
-    /**
91
-     * @return Point
92
-     */
93
-    public function point()
94
-    {
95
-        if (is_null($this->point)) {
96
-            $this->point = new Point();
97
-        }
98
-
99
-        return $this->point;
100
-    }
101
-
102
-    /**
103
-     * @return Arc
104
-     */
105
-    public function getArc()
106
-    {
107
-        return $this->arc;
108
-    }
109
-
110
-    /**
111
-     * @return Arc
112
-     */
113
-    public function arc()
114
-    {
115
-        if (is_null($this->arc)) {
116
-            $this->arc = new Arc();
117
-        }
118
-
119
-        return $this->arc;
120
-    }
121
-
122
-    /**
123
-     * @return array
124
-     */
125
-    public function jsonSerialize()
126
-    {
127
-        return $this->getArrayCopy();
128
-    }
20
+	use ArraySerializable;
21
+
22
+	/**
23
+	 * @var Rectangle
24
+	 */
25
+	private $rectangle;
26
+
27
+	/**
28
+	 * @var Line
29
+	 */
30
+	private $line;
31
+
32
+	/**
33
+	 * @var Point
34
+	 */
35
+	private $point;
36
+
37
+	/**
38
+	 * @var Arc
39
+	 */
40
+	private $arc;
41
+
42
+	/**
43
+	 * @return Rectangle
44
+	 */
45
+	public function getRectangle()
46
+	{
47
+		return $this->rectangle;
48
+	}
49
+
50
+	/**
51
+	 * @return Rectangle
52
+	 */
53
+	public function rectangle()
54
+	{
55
+		if (is_null($this->rectangle)) {
56
+			$this->rectangle = new Rectangle();
57
+		}
58
+
59
+		return $this->rectangle;
60
+	}
61
+
62
+	/**
63
+	 * @return Line
64
+	 */
65
+	public function getLine()
66
+	{
67
+		return $this->line;
68
+	}
69
+
70
+	/**
71
+	 * @return Line
72
+	 */
73
+	public function line()
74
+	{
75
+		if (is_null($this->line)) {
76
+			$this->line = new Line();
77
+		}
78
+
79
+		return $this->line;
80
+	}
81
+
82
+	/**
83
+	 * @return Point
84
+	 */
85
+	public function getPoint()
86
+	{
87
+		return $this->point;
88
+	}
89
+
90
+	/**
91
+	 * @return Point
92
+	 */
93
+	public function point()
94
+	{
95
+		if (is_null($this->point)) {
96
+			$this->point = new Point();
97
+		}
98
+
99
+		return $this->point;
100
+	}
101
+
102
+	/**
103
+	 * @return Arc
104
+	 */
105
+	public function getArc()
106
+	{
107
+		return $this->arc;
108
+	}
109
+
110
+	/**
111
+	 * @return Arc
112
+	 */
113
+	public function arc()
114
+	{
115
+		if (is_null($this->arc)) {
116
+			$this->arc = new Arc();
117
+		}
118
+
119
+		return $this->arc;
120
+	}
121
+
122
+	/**
123
+	 * @return array
124
+	 */
125
+	public function jsonSerialize()
126
+	{
127
+		return $this->getArrayCopy();
128
+	}
129 129
 }
Please login to merge, or discard this patch.
src/Options/Layout/Padding.php 1 patch
Indentation   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -12,113 +12,113 @@
 block discarded – undo
12 12
  */
13 13
 class Padding implements ArraySerializableInterface, JsonSerializable
14 14
 {
15
-    use ArraySerializable;
16
-
17
-    /**
18
-     * @var int
19
-     */
20
-    private $bottom;
21
-
22
-    /**
23
-     * @var int
24
-     */
25
-    private $left;
26
-
27
-    /**
28
-     * @var int
29
-     */
30
-    private $right;
31
-
32
-    /**
33
-     * @var int
34
-     */
35
-    private $top;
36
-
37
-    /**
38
-     * @return int
39
-     */
40
-    public function getBottom()
41
-    {
42
-        return $this->bottom;
43
-    }
44
-
45
-    /**
46
-     * @param int $bottom
47
-     *
48
-     * @return $this
49
-     */
50
-    public function setBottom($bottom)
51
-    {
52
-        $this->bottom = intval($bottom);
53
-
54
-        return $this;
55
-    }
56
-
57
-    /**
58
-     * @return int
59
-     */
60
-    public function getLeft()
61
-    {
62
-        return $this->left;
63
-    }
64
-
65
-    /**
66
-     * @param int $left
67
-     *
68
-     * @return $this
69
-     */
70
-    public function setLeft($left)
71
-    {
72
-        $this->left = intval($left);
73
-
74
-        return $this;
75
-    }
76
-
77
-    /**
78
-     * @return int
79
-     */
80
-    public function getRight()
81
-    {
82
-        return $this->right;
83
-    }
84
-
85
-    /**
86
-     * @param int $right
87
-     *
88
-     * @return $this
89
-     */
90
-    public function setRight($right)
91
-    {
92
-        $this->right = intval($right);
93
-
94
-        return $this;
95
-    }
96
-
97
-    /**
98
-     * @return int
99
-     */
100
-    public function getTop()
101
-    {
102
-        return $this->top;
103
-    }
104
-
105
-    /**
106
-     * @param int $top
107
-     *
108
-     * @return $this
109
-     */
110
-    public function setTop($top)
111
-    {
112
-        $this->top = intval($top);
113
-
114
-        return $this;
115
-    }
116
-
117
-    /**
118
-     * @return array
119
-     */
120
-    public function jsonSerialize()
121
-    {
122
-        return $this->getArrayCopy();
123
-    }
15
+	use ArraySerializable;
16
+
17
+	/**
18
+	 * @var int
19
+	 */
20
+	private $bottom;
21
+
22
+	/**
23
+	 * @var int
24
+	 */
25
+	private $left;
26
+
27
+	/**
28
+	 * @var int
29
+	 */
30
+	private $right;
31
+
32
+	/**
33
+	 * @var int
34
+	 */
35
+	private $top;
36
+
37
+	/**
38
+	 * @return int
39
+	 */
40
+	public function getBottom()
41
+	{
42
+		return $this->bottom;
43
+	}
44
+
45
+	/**
46
+	 * @param int $bottom
47
+	 *
48
+	 * @return $this
49
+	 */
50
+	public function setBottom($bottom)
51
+	{
52
+		$this->bottom = intval($bottom);
53
+
54
+		return $this;
55
+	}
56
+
57
+	/**
58
+	 * @return int
59
+	 */
60
+	public function getLeft()
61
+	{
62
+		return $this->left;
63
+	}
64
+
65
+	/**
66
+	 * @param int $left
67
+	 *
68
+	 * @return $this
69
+	 */
70
+	public function setLeft($left)
71
+	{
72
+		$this->left = intval($left);
73
+
74
+		return $this;
75
+	}
76
+
77
+	/**
78
+	 * @return int
79
+	 */
80
+	public function getRight()
81
+	{
82
+		return $this->right;
83
+	}
84
+
85
+	/**
86
+	 * @param int $right
87
+	 *
88
+	 * @return $this
89
+	 */
90
+	public function setRight($right)
91
+	{
92
+		$this->right = intval($right);
93
+
94
+		return $this;
95
+	}
96
+
97
+	/**
98
+	 * @return int
99
+	 */
100
+	public function getTop()
101
+	{
102
+		return $this->top;
103
+	}
104
+
105
+	/**
106
+	 * @param int $top
107
+	 *
108
+	 * @return $this
109
+	 */
110
+	public function setTop($top)
111
+	{
112
+		$this->top = intval($top);
113
+
114
+		return $this;
115
+	}
116
+
117
+	/**
118
+	 * @return array
119
+	 */
120
+	public function jsonSerialize()
121
+	{
122
+		return $this->getArrayCopy();
123
+	}
124 124
 }
Please login to merge, or discard this patch.
src/Options/Hover.php 1 patch
Indentation   +117 added lines, -117 removed lines patch added patch discarded remove patch
@@ -14,121 +14,121 @@
 block discarded – undo
14 14
  */
15 15
 class Hover implements ArraySerializableInterface, JsonSerializable
16 16
 {
17
-    use ArraySerializable;
18
-
19
-    /**
20
-     * @var string
21
-     */
22
-    private $mode;
23
-
24
-    /**
25
-     * @var bool
26
-     */
27
-    private $intersect;
28
-
29
-    /**
30
-     * @var int
31
-     */
32
-    private $animationDuration;
33
-
34
-    /**
35
-     * @var Expr
36
-     */
37
-    private $onHover;
38
-
39
-    /**
40
-     * @return string
41
-     */
42
-    public function getMode()
43
-    {
44
-        return $this->mode;
45
-    }
46
-
47
-    /**
48
-     * @param string $mode
49
-     *
50
-     * @return $this
51
-     */
52
-    public function setMode($mode)
53
-    {
54
-        $this->mode = strval($mode);
55
-
56
-        return $this;
57
-    }
58
-
59
-    /**
60
-     * @return bool
61
-     */
62
-    public function isIntersect()
63
-    {
64
-        return $this->intersect;
65
-    }
66
-
67
-    /**
68
-     * @return bool
69
-     */
70
-    public function getIntersect()
71
-    {
72
-        return $this->intersect;
73
-    }
74
-
75
-    /**
76
-     * @param bool $intersect
77
-     *
78
-     * @return $this
79
-     */
80
-    public function setIntersect($intersect)
81
-    {
82
-        $this->intersect = ! ! $intersect;
83
-
84
-        return $this;
85
-    }
86
-
87
-    /**
88
-     * @return int
89
-     */
90
-    public function getAnimationDuration()
91
-    {
92
-        return $this->animationDuration;
93
-    }
94
-
95
-    /**
96
-     * @param int $animationDuration
97
-     *
98
-     * @return $this
99
-     */
100
-    public function setAnimationDuration($animationDuration)
101
-    {
102
-        $this->animationDuration = intval($animationDuration);
103
-
104
-        return $this;
105
-    }
106
-
107
-    /**
108
-     * @return \Zend\Json\Expr
109
-     */
110
-    public function getOnHover()
111
-    {
112
-        return $this->onHover;
113
-    }
114
-
115
-    /**
116
-     * @param Expr $onHover
117
-     *
118
-     * @return $this
119
-     */
120
-    public function setOnHover($onHover)
121
-    {
122
-        $this->onHover = new Expr(strval($onHover));
123
-
124
-        return $this;
125
-    }
126
-
127
-    /**
128
-     * @return array
129
-     */
130
-    public function jsonSerialize()
131
-    {
132
-        return $this->getArrayCopy();
133
-    }
17
+	use ArraySerializable;
18
+
19
+	/**
20
+	 * @var string
21
+	 */
22
+	private $mode;
23
+
24
+	/**
25
+	 * @var bool
26
+	 */
27
+	private $intersect;
28
+
29
+	/**
30
+	 * @var int
31
+	 */
32
+	private $animationDuration;
33
+
34
+	/**
35
+	 * @var Expr
36
+	 */
37
+	private $onHover;
38
+
39
+	/**
40
+	 * @return string
41
+	 */
42
+	public function getMode()
43
+	{
44
+		return $this->mode;
45
+	}
46
+
47
+	/**
48
+	 * @param string $mode
49
+	 *
50
+	 * @return $this
51
+	 */
52
+	public function setMode($mode)
53
+	{
54
+		$this->mode = strval($mode);
55
+
56
+		return $this;
57
+	}
58
+
59
+	/**
60
+	 * @return bool
61
+	 */
62
+	public function isIntersect()
63
+	{
64
+		return $this->intersect;
65
+	}
66
+
67
+	/**
68
+	 * @return bool
69
+	 */
70
+	public function getIntersect()
71
+	{
72
+		return $this->intersect;
73
+	}
74
+
75
+	/**
76
+	 * @param bool $intersect
77
+	 *
78
+	 * @return $this
79
+	 */
80
+	public function setIntersect($intersect)
81
+	{
82
+		$this->intersect = ! ! $intersect;
83
+
84
+		return $this;
85
+	}
86
+
87
+	/**
88
+	 * @return int
89
+	 */
90
+	public function getAnimationDuration()
91
+	{
92
+		return $this->animationDuration;
93
+	}
94
+
95
+	/**
96
+	 * @param int $animationDuration
97
+	 *
98
+	 * @return $this
99
+	 */
100
+	public function setAnimationDuration($animationDuration)
101
+	{
102
+		$this->animationDuration = intval($animationDuration);
103
+
104
+		return $this;
105
+	}
106
+
107
+	/**
108
+	 * @return \Zend\Json\Expr
109
+	 */
110
+	public function getOnHover()
111
+	{
112
+		return $this->onHover;
113
+	}
114
+
115
+	/**
116
+	 * @param Expr $onHover
117
+	 *
118
+	 * @return $this
119
+	 */
120
+	public function setOnHover($onHover)
121
+	{
122
+		$this->onHover = new Expr(strval($onHover));
123
+
124
+		return $this;
125
+	}
126
+
127
+	/**
128
+	 * @return array
129
+	 */
130
+	public function jsonSerialize()
131
+	{
132
+		return $this->getArrayCopy();
133
+	}
134 134
 }
Please login to merge, or discard this patch.