Skip to content

Commit 6699dda

Browse files
committed
Apply fixes from StyleCI
1 parent 864e8c8 commit 6699dda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/framework/src/Console/Commands/MakePublicationTagCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace Hyde\Console\Commands;
66

7-
use RuntimeException;
87
use function array_merge;
98
use Hyde\Console\Commands\Helpers\InputStreamHandler;
109
use Hyde\Console\Commands\Interfaces\CommandHandleInterface;
@@ -15,6 +14,7 @@
1514
use Hyde\Hyde;
1615
use function implode;
1716
use LaravelZero\Framework\Commands\Command;
17+
use RuntimeException;
1818
use function Safe\json_encode;
1919
use function sprintf;
2020

packages/framework/src/Console/Concerns/ValidatingCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function handleException(Exception $exception, ?string $file = null, ?int
106106
*/
107107
public function infoComment(string $info, string $comment, ?string $moreInfo = null): void
108108
{
109-
$this->line("<info>$info</info> [<comment>$comment</comment>]" . ($moreInfo ? " <info>$moreInfo</info>" : ''));
109+
$this->line("<info>$info</info> [<comment>$comment</comment>]".($moreInfo ? " <info>$moreInfo</info>" : ''));
110110
}
111111

112112
protected function translate($name, string $error): string

0 commit comments

Comments
 (0)