chore: increase linter speed (#4211)

This commit is contained in:
Dag 2024-08-11 02:31:50 +02:00 committed by GitHub
parent 133dbf87c5
commit 4424ea54e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 4 deletions

View file

@ -2,8 +2,8 @@
abstract class BridgeAbstract
{
const NAME = 'Unnamed bridge';
const URI = '';
const NAME = null;
const URI = null;
const DONATION_URI = '';
const DESCRIPTION = 'No description provided';
@ -61,7 +61,7 @@ abstract class BridgeAbstract
public function getName()
{
return static::NAME;
return static::NAME ?? $this->getShortName();
}
public function getURI()