1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00

Added getter for ID

This commit is contained in:
Lars Kusch 2022-12-10 05:50:54 +01:00 committed by GitHub
parent eb04453369
commit 46624c4be9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,4 +35,8 @@ class Country extends StaticModel
{
return trans('texts.country_'.$this->name);
}
public function getID() :string
{
return $this->id;
}
}