Skip to content

Commit 356ab57

Browse files
committed
Fix whitespace
1 parent 41cd580 commit 356ab57

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

bin/class.tpl.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,24 @@ class <?= $class_name ?> extends Base
4444

4545
*/
4646
protected $<?= $name ?>;
47+
4748
<?php
4849
}
4950
foreach (array_get($spec, 'get', []) as $name => $settings) {
5051
if (array_has($settings, 'auto-fill') && is_string(array_get($settings, 'auto-fill'))) {
5152
?>
52-
5353
/**
5454
* <?= title_case(str_replace('_', ' ', array_get($settings, 'auto-fill'))) ?>.
5555
*
5656
* @var array
5757
*/
5858
public $<?= array_get($settings, 'auto-fill') ?> = [];
59+
5960
<?php
6061
}
6162
}
6263
if (array_has($spec, 'fillable')) {
6364
?>
64-
6565
/**
6666
* This model is fillable.
6767
*

src/endpoints/Linode/Instances/Stat.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class Stat extends Base
3737
* @var int
3838
*/
3939
protected $linode_id;
40+
4041
/**
4142
* Year.
4243
*

src/endpoints/Nodebalancers/Configs/Node.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class Node extends Base
3737
* @var int
3838
*/
3939
protected $node_balancer_id;
40+
4041
/**
4142
* Config Id.
4243
*

src/endpoints/Profile.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ class Profile extends Base
3131
*/
3232
protected $endpoint = 'profile';
3333

34-
3534
/**
3635
* This model is fillable.
3736
*

0 commit comments

Comments
 (0)