Skip to content

Commit da43466

Browse files
committed
Fix some unnecessary style changes
1 parent 22cf7f1 commit da43466

1 file changed

Lines changed: 15 additions & 16 deletions

File tree

src/config/CodeFileGeneratorConfig.php

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ protected function getOptionalOptions() {
99
'headerComment', 'headerDocblock', 'blankLineAtEnd', 'declareStrictTypes'
1010
], parent::getOptionalOptions());
1111
}
12-
12+
1313
protected function getDefaultOptions() {
1414
return array_merge([
1515
'headerComment' => '',
@@ -18,7 +18,7 @@ protected function getDefaultOptions() {
1818
'declareStrictTypes' => false,
1919
], parent::getDefaultOptions());
2020
}
21-
21+
2222
protected function getAllowedOptionTypes() {
2323
return array_merge([
2424
'headerComment' => 'string',
@@ -27,73 +27,72 @@ protected function getAllowedOptionTypes() {
2727
'declareStrictTypes' => 'bool',
2828
], parent::getAllowedOptionTypes());
2929
}
30-
30+
3131
/**
3232
* @return string
3333
*/
3434
public function getHeaderComment() {
3535
return $this->options['headerComment'];
3636
}
37-
37+
3838
/**
39-
*
39+
*
4040
* @param string $comment
4141
* @return $this
4242
*/
4343
public function setHeaderComment($comment) {
4444
$this->options['headerComment'] = $comment;
4545
return $this;
4646
}
47-
47+
4848
/**
4949
* @return Docblock
5050
*/
5151
public function getHeaderDocblock() {
5252
return $this->options['headerDocblock'];
5353
}
54-
54+
5555
/**
56-
*
56+
*
5757
* @param Docblock $docblock
5858
* @return $this
5959
*/
6060
public function setHeaderDocblock(Docblock $docblock) {
6161
$this->options['headerDocblock'] = $docblock;
6262
return $this;
6363
}
64-
64+
6565
/**
6666
* @return boolean
6767
*/
6868
public function getBlankLineAtEnd() {
6969
return $this->options['blankLineAtEnd'];
7070
}
71-
71+
7272
/**
73-
*
73+
*
7474
* @param boolean $show
7575
* @return $this
7676
*/
7777
public function setBlankLineAtEnd($show) {
7878
$this->options['blankLineAtEnd'] = $show;
7979
return $this;
8080
}
81-
81+
8282
/**
8383
* @return boolean
8484
*/
8585
public function getDeclareStrictTypes() {
8686
return $this->options['declareStrictTypes'];
8787
}
88-
88+
8989
/**
90-
*
90+
*
9191
* @param boolean $strict
9292
* @return $this
9393
*/
9494
public function setDeclareStrictTypes($strict) {
9595
$this->options['declareStrictTypes'] = $strict;
9696
return $this;
9797
}
98-
99-
}
98+
}

0 commit comments

Comments
 (0)