Deprecated: Symfony\Component\Translation\t(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/translation/Resources/functions.php on line 18

Deprecated: Symfony\Component\Dotenv\Dotenv::loadEnv(): Implicitly marking parameter $envKey as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/dotenv/Dotenv.php on line 110

Deprecated: Symfony\Component\Runtime\GenericRuntime::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/GenericRuntime.php on line 89

Deprecated: Symfony\Component\Runtime\RuntimeInterface::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/RuntimeInterface.php on line 26

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $argv as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\Input::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/Input.php on line 36

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

src/Twig/Components/SocialLinks.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Twig\Components;
  3. use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
  4. #[AsTwigComponent('SocialLinks')]
  5. class SocialLinks
  6. {
  7.     public string $size "sm";
  8.     public array $links = [
  9.         "linkedin" => [
  10.             "url" => "https://www.linkedin.com/company/taurushrsolutions/",
  11.             "name" => "LinkedIn",
  12.             "icon" => "linkedin",
  13.         ],
  14.         "facebook" => [
  15.             "url" => "https://www.facebook.com/TaurusHRSolutionsUK",
  16.             "name" => "Facebook",
  17.             "icon" => "facebook",
  18.         ],
  19.         "instagram" => [
  20.             "url" => "https://www.instagram.com/taurushrsolutionsuk/",
  21.             "name" => "Instagram",
  22.             "icon" => "instagram",
  23.         ]
  24.     ];
  25. }