Skip to content

Commit 67445b0

Browse files
rubenvanasschegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 0e31e09 commit 67445b0

9 files changed

+3
-10
lines changed

src/Actions/TransformTypeAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct(
1818
}
1919

2020
/**
21-
* @param class-string $type
21+
* @param class-string $type
2222
*/
2323
public function execute(string $type): ?Transformed
2424
{

src/Actions/TransformTypesAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct(
1818
}
1919

2020
/**
21-
* @param array<string> $types
21+
* @param array<string> $types
2222
*/
2323
public function execute(array $types): TransformedCollection
2424
{

src/Events/Watch/DirectoryCreatedWatchEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44

55
class DirectoryCreatedWatchEvent extends WatchEvent
66
{
7-
87
}

src/Events/Watch/DirectoryDeletedWatchEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44

55
class DirectoryDeletedWatchEvent extends WatchEvent
66
{
7-
87
}

src/Events/Watch/FileCreatedWatchEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44

55
class FileCreatedWatchEvent extends WatchEvent
66
{
7-
87
}

src/Events/Watch/FileDeletedWatchEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44

55
class FileDeletedWatchEvent extends WatchEvent
66
{
7-
87
}

src/Events/Watch/FileUpdatedWatchEvent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44

55
class FileUpdatedWatchEvent extends WatchEvent
66
{
7-
87
}

src/Laravel/Commands/WatchTypeScriptCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Illuminate\Console\Command;
66
use Spatie\TypeScriptTransformer\TypeScriptTransformerConfig;
7-
use Spatie\Watcher\Watch;
87

98
class WatchTypeScriptCommand extends Command
109
{
@@ -16,7 +15,6 @@ public function handle(
1615
TypeScriptTransformerConfig $config,
1716
): int {
1817

19-
2018
$this->comment('Watching for changes...');
2119

2220
return self::SUCCESS;

src/Support/TransformedCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class TransformedCollection implements IteratorAggregate
1414
{
1515
/**
16-
* @param array<Transformed> $items
16+
* @param array<Transformed> $items
1717
*/
1818
public function __construct(
1919
protected array $items = [],

0 commit comments

Comments
 (0)