Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Differ/DiffCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use O0h\PhpAstCheckDiff\Value\Diff;

/**
* @phpstan-type commit array{hash: string, message: string}
* @phpstan-type commit array{hash: string, message: string}
*/
class DiffCollector
{
Expand Down
2 changes: 1 addition & 1 deletion src/External/Git.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct()
{
$gitInstalled = $this->shellExec('which git');
if (!$gitInstalled) {
throw new \RuntimeException('git command is not installed');
throw new \RuntimeException('the git command is not installed');
}
}

Expand Down