This commit is contained in:
Sebastian Bergmann 2024-04-04 08:29:29 +02:00
parent aa77741995
commit c409c34cd8
No known key found for this signature in database
GPG Key ID: 4AA394086372C20A
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ final class Exporter
// private $propertyName => "\0ClassName\0propertyName"
// protected $propertyName => "\0*\0propertyName"
// public $propertyName => "propertyName"
if (preg_match('/^\0.+\0(.+)$/', (string) $key, $matches)) {
if (preg_match('/\0.+\0(.+)/', (string) $key, $matches)) {
$key = $matches[1];
}