Skip to content

Commit 7db784b

Browse files
committed
Update CS.
Signed-off-by: crynobone <crynobone@gmail.com>
1 parent d4533da commit 7db784b

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.php_cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,20 @@ return Symfony\CS\Config\Config::create()
3333
'phpdoc_no_access',
3434
'-phpdoc_no_empty_return',
3535
'phpdoc_no_package',
36+
'phpdoc_order',
3637
'-phpdoc_params',
3738
'phpdoc_scalar',
3839
'phpdoc_separation',
3940
'phpdoc_short_description',
4041
'phpdoc_to_comment',
4142
'phpdoc_trim',
4243
'phpdoc_type_to_var',
44+
'phpdoc_types',
4345
'phpdoc_var_without_name',
46+
'print_to_echo',
4447
'remove_leading_slash_use',
4548
'remove_lines_between_uses',
49+
'self_accessor',
4650
'short_array_syntax',
4751
'single_array_no_trailing_comma',
4852
'single_blank_line_before_namespace',

src/Componentable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ protected function getComponentData(array $signature, array $arguments)
9595
* @param string $method
9696
* @param array $parameters
9797
*
98-
* @return \Illuminate\Contracts\View\View|mixed
99-
*
10098
* @throws \BadMethodCallException
99+
*
100+
* @return \Illuminate\Contracts\View\View|mixed
101101
*/
102102
public function __call($method, $parameters)
103103
{

src/FormBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,9 @@ public function getHtmlBuilder()
285285
* @param string $method
286286
* @param array $parameters
287287
*
288-
* @return \Illuminate\Contracts\View\View|mixed
289-
*
290288
* @throws \BadMethodCallException
289+
*
290+
* @return \Illuminate\Contracts\View\View|mixed
291291
*/
292292
public function __call($method, $parameters)
293293
{

src/HtmlBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,9 +507,9 @@ protected function toHtmlString($html)
507507
* @param string $method
508508
* @param array $parameters
509509
*
510-
* @return \Illuminate\Contracts\View\View|mixed
511-
*
512510
* @throws \BadMethodCallException
511+
*
512+
* @return \Illuminate\Contracts\View\View|mixed
513513
*/
514514
public function __call($method, $parameters)
515515
{

0 commit comments

Comments
 (0)