Make LabelGenerator services final.

This commit is contained in:
Jan Böhmer 2020-05-09 18:17:23 +02:00
parent 28187f1ef2
commit e925bec5b6
18 changed files with 48 additions and 48 deletions

View file

@ -30,11 +30,11 @@ use Symfony\Component\Security\Core\Security;
* Provides Placeholders for infos about global infos like Installation name or datetimes.
* @package App\Services\LabelSystem\PlaceholderProviders
*/
class GlobalProviders implements PlaceholderProviderInterface
final class GlobalProviders implements PlaceholderProviderInterface
{
protected $partdb_title;
protected $security;
private $partdb_title;
private $security;
public function __construct(string $partdb_title, Security $security)
{