Skip to content

Commit c8f393d

Browse files
committed
style: update coding style
composer cs-fix
1 parent 66610dc commit c8f393d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

app/Config/Logger.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,12 @@ class Logger extends BaseConfig
7474
* the handler on top and continuing down.
7575
*/
7676
public array $handlers = [
77-
7877
/*
7978
* --------------------------------------------------------------------
8079
* File Handler
8180
* --------------------------------------------------------------------
8281
*/
8382
FileHandler::class => [
84-
8583
// The log levels that this handler will handle.
8684
'handles' => [
8785
'critical',

tests/entities/ContributorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
final class ContributorTest extends ProjectTestCase
1010
{
1111
/**
12-
* @dataProvider contributionsProvider
12+
* @dataProvider provideStars
1313
*/
1414
public function testStars(int $contributions, string $expected)
1515
{
@@ -18,7 +18,7 @@ public function testStars(int $contributions, string $expected)
1818
$this->assertSame($expected, $contributor->stars);
1919
}
2020

21-
public static function contributionsProvider(): array
21+
public static function provideStars(): iterable
2222
{
2323
return [
2424
[0, ''],

0 commit comments

Comments
 (0)