Skip to content

Commit

Permalink
Fix: Case
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and theseer committed Apr 3, 2024
1 parent 195a17f commit ad9cfd2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/phpstan/bootstrap.php
@@ -1,7 +1,7 @@
<?php declare(strict_types=1);

if (!class_exists('Gnupg')) {
class Gnupg {
if (!class_exists('gnupg')) {
class gnupg {
public function import($p): array {
}

Expand Down
4 changes: 2 additions & 2 deletions src/shared/GnuPG.php
Expand Up @@ -14,13 +14,13 @@
use PharIo\FileSystem\Directory;

class GnuPG {
/** @var \GnuPG */
/** @var \gnupg */
private $gnupg;

/** @var Directory */
private $homeDir;

public function __construct(\GnuPG $gnupg, Directory $homeDir) {
public function __construct(\gnupg $gnupg, Directory $homeDir) {
$this->gnupg = $gnupg;
$this->homeDir = $homeDir;
}
Expand Down
Expand Up @@ -18,14 +18,14 @@
* @covers \PharIo\Phive\GnupgSignatureVerifier
*/
class GnupgSignatureVerifierTest extends TestCase {
/** @var \Gnupg|ObjectProphecy */
/** @var GnuPG|ObjectProphecy */
private $gnupg;

/** @var KeyService|ObjectProphecy */
private $keyservice;

protected function setUp(): void {
$this->gnupg = $this->prophesize(Gnupg::class);
$this->gnupg = $this->prophesize(GnuPG::class);
$this->keyservice = $this->prophesize(KeyService::class);
}

Expand Down

0 comments on commit ad9cfd2

Please sign in to comment.