Update php to v8.3 and symfony to v7.0
This commit is contained in:
@ -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;
|
||||
|
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user