```bash
php-cs-fixer fix --allow-risky=yes --rules=@PSR2,psr4,mb_str_functions.php_unit_construct,php_unit_ordered_covers,trailing_comma_in_multiline_array --rules='{"array_syntax": {"syntax":"short"}}' [tests/|src/]
```
10 lines
128 B
PHP
10 lines
128 B
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Middleware\Stub;
|
|
|
|
class HasStaticMethod
|
|
{
|
|
public static function foo()
|
|
{
|
|
}
|
|
}
|