/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Notifier/Recipient/SmsRecipientTrait.php
25 строк
488 B
Alexander M. Turek
[Notifier] Add types to private properties
08 сен 2021, 19:40
08 сен 2021, 19:40
2ed2c42
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Notifier\Recipient; /** * @author Jan Schädlich <jan.schaedlich@sensiolabs.de> */ trait SmsRecipientTrait { private string $phone; public function getPhone(): string { return $this->phone; } }