Skip to content

Commit

Permalink
Fix code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
eliashaeussler committed Nov 26, 2024
1 parent e266873 commit 6d29363
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/GitElephant/Sequence/AbstractCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ public function contains($searchedElem): bool
return false;
}

/**
* @param callable $callable
*
* @return \PhpOption\LazyOption
*/
/**
* @param callable $callable
*
* @return \PhpOption\LazyOption
*/
public function find(callable $callable): LazyOption
{
$self = $this;
Expand Down
2 changes: 1 addition & 1 deletion tests/GitElephant/Objects/TreeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function testSubmodule(): void
mkdir($path);
$repository = new Repository($path);
$repository->init(false, 'master');
// required for newer git versions,
// required for newer git versions,
// see e.g. https://bugs.launchpad.net/ubuntu/+source/git/+bug/1993586
$repository->addGlobalConfig("protocol.file.allow", "always");
$repository->addSubmodule($this->repository->getPath());
Expand Down

0 comments on commit 6d29363

Please sign in to comment.