1
0
Fork 0

Fix return value

pull/9063/head
Jordi Boggiano 2020-07-17 11:05:57 +02:00
parent a2ab6f2b54
commit 201533e16f
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 1 additions and 1 deletions

View File

@ -173,6 +173,6 @@ class RepositoryFactory
$name .= '2';
}
return is_numeric((string) $name) ? 'repo'.$name : $name;
return $name;
}
}