This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Symfony\Component\Mailer\Transport; | |
| use Symfony\Component\Mailer\Mailer; | |
| use Symfony\Component\Mailer\Transport\Smtp\SmtpTransport; | |
| $transport = Transport::fromDsn("smtp://user:pass@smtp.example.com:25"); | |
| // From https://www.lambda-out-loud.com/posts/accessing-private-properties-php/ | |
| // Until Symphony supports the dsn option, this is the only way, other than | |
| // disabling certificate verification |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace SloCloud\Model\Storage\Institution; | |
| class Section | |
| { | |
| private string $Id; |