1
0
Fork 0

Simplify property assignment (#11488)

pull/11496/head
Dan Wallis 2023-06-06 13:26:14 +01:00 committed by GitHub
parent 52caea70d4
commit 3b5976667c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class AutoloadGenerator
public function setApcu(bool $apcu, ?string $apcuPrefix = null) public function setApcu(bool $apcu, ?string $apcuPrefix = null)
{ {
$this->apcu = $apcu; $this->apcu = $apcu;
$this->apcuPrefix = $apcuPrefix !== null ? $apcuPrefix : $apcuPrefix; $this->apcuPrefix = $apcuPrefix;
} }
/** /**