Update php to v8.3 and symfony to v7.0

This commit is contained in:
Tim
2023-12-12 23:13:57 +01:00
parent 4989a9f7cc
commit c7c245bf13
4 changed files with 667 additions and 691 deletions

View File

@ -103,7 +103,7 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface
/**
* @see UserInterface
*/
public function eraseCredentials()
public function eraseCredentials(): void
{
// If you store any temporary, sensitive data on the user, clear it here
// $this->plainPassword = null;

View File

@ -6,7 +6,7 @@ use CzProject\GitPhp\Git;
class CustomGit extends Git
{
public function open($directory)
public function open($directory): CustomGitRepository
{
return new CustomGitRepository($directory, $this->runner);
}