Skip to content

Commit 2d0631a

Browse files
committed
Fix Code Style
1 parent 9988887 commit 2d0631a

File tree

5 files changed

+5
-13
lines changed

5 files changed

+5
-13
lines changed

src/Data/Column.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
namespace CleaniqueCoders\LaravelDbDoc\Data;
44

5-
class Column
6-
{
7-
}
5+
class Column {}

src/Data/Schema.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ class Schema
66
{
77
protected array $collections;
88

9-
public function __construct(protected $tables, protected $schema)
10-
{
11-
}
9+
public function __construct(protected $tables, protected $schema) {}
1210

1311
public static function make($tables, $schema)
1412
{

src/Data/Table.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
namespace CleaniqueCoders\LaravelDbDoc\Data;
44

5-
class Table
6-
{
7-
}
5+
class Table {}

src/Presentation/AbstractPresenter.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ abstract class AbstractPresenter implements Presenter
1212

1313
abstract public function getContents();
1414

15-
public function __construct(protected array $contents)
16-
{
17-
}
15+
public function __construct(protected array $contents) {}
1816

1917
public function getDisk()
2018
{

src/Processor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __destruct()
3232

3333
public static function make()
3434
{
35-
return new self();
35+
return new self;
3636
}
3737

3838
public function process()

0 commit comments

Comments
 (0)