repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/VonageTransport.php
src/Symfony/Component/Notifier/Bridge/Vonage/VonageTransport.php
<?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\Bridge\Vonage; use Symfony\Component\Notifie...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/VonageTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Vonage/VonageTransportFactory.php
<?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\Bridge\Vonage; use Symfony\Component\Notifie...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/Webhook/VonageRequestParser.php
src/Symfony/Component/Notifier/Bridge/Vonage/Webhook/VonageRequestParser.php
<?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\Bridge\Vonage\Webhook; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/Tests/VonageTransportTest.php
src/Symfony/Component/Notifier/Bridge/Vonage/Tests/VonageTransportTest.php
<?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\Bridge\Vonage\Tests; use Symfony\Component\H...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/Tests/VonageTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Vonage/Tests/VonageTransportFactoryTest.php
<?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\Bridge\Vonage\Tests; use Symfony\Component\N...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/VonageRequestParserTest.php
src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/VonageRequestParserTest.php
<?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\Bridge\Vonage\Tests\Webhook; use Symfony\Com...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/Fixtures/rejected.php
src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/Fixtures/rejected.php
<?php use Symfony\Component\RemoteEvent\Event\Sms\SmsEvent; $wh = new SmsEvent(SmsEvent::FAILED, 'aaaaaaaa-bbbb-cccc-dddd-0123456789ab', json_decode(file_get_contents(str_replace('.php', '.json', __FILE__)), true, flags: \JSON_THROW_ON_ERROR)); $wh->setRecipientPhone('447700900000'); return $wh;
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/Fixtures/delivered.php
src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/Fixtures/delivered.php
<?php use Symfony\Component\RemoteEvent\Event\Sms\SmsEvent; $wh = new SmsEvent(SmsEvent::DELIVERED, 'aaaaaaaa-bbbb-cccc-dddd-0123456789ab', json_decode(file_get_contents(str_replace('.php', '.json', __FILE__)), true, flags: \JSON_THROW_ON_ERROR)); $wh->setRecipientPhone('447700900000'); return $wh;
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/Fixtures/undeliverable.php
src/Symfony/Component/Notifier/Bridge/Vonage/Tests/Webhook/Fixtures/undeliverable.php
<?php use Symfony\Component\RemoteEvent\Event\Sms\SmsEvent; $wh = new SmsEvent(SmsEvent::FAILED, 'aaaaaaaa-bbbb-cccc-dddd-0123456789ab', json_decode(file_get_contents(str_replace('.php', '.json', __FILE__)), true, flags: \JSON_THROW_ON_ERROR)); $wh->setRecipientPhone('447700900000'); return $wh;
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/OneSignal/OneSignalOptions.php
src/Symfony/Component/Notifier/Bridge/OneSignal/OneSignalOptions.php
<?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\Bridge\OneSignal; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/OneSignal/OneSignalTransport.php
src/Symfony/Component/Notifier/Bridge/OneSignal/OneSignalTransport.php
<?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\Bridge\OneSignal; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/OneSignal/OneSignalTransportFactory.php
src/Symfony/Component/Notifier/Bridge/OneSignal/OneSignalTransportFactory.php
<?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\Bridge\OneSignal; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/OneSignal/Tests/OneSignalTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/OneSignal/Tests/OneSignalTransportFactoryTest.php
<?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\Bridge\OneSignal\Tests; use Symfony\Componen...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/OneSignal/Tests/OneSignalTransportTest.php
src/Symfony/Component/Notifier/Bridge/OneSignal/Tests/OneSignalTransportTest.php
<?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\Bridge\OneSignal\Tests; use Symfony\Componen...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/OneSignal/Tests/OneSignalOptionsTest.php
src/Symfony/Component/Notifier/Bridge/OneSignal/Tests/OneSignalOptionsTest.php
<?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\Bridge\OneSignal\Tests; use PHPUnit\Framewor...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Termii/TermiiOptions.php
src/Symfony/Component/Notifier/Bridge/Termii/TermiiOptions.php
<?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\Bridge\Termii; use Symfony\Component\Notifie...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Termii/TermiiTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Termii/TermiiTransportFactory.php
<?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\Bridge\Termii; use Symfony\Component\Notifie...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Termii/TermiiTransport.php
src/Symfony/Component/Notifier/Bridge/Termii/TermiiTransport.php
<?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\Bridge\Termii; use Symfony\Component\HttpCli...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Termii/Tests/TermiiTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Termii/Tests/TermiiTransportFactoryTest.php
<?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\Bridge\Termii\Tests; use Symfony\Component\N...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Termii/Tests/TermiiOptionsTest.php
src/Symfony/Component/Notifier/Bridge/Termii/Tests/TermiiOptionsTest.php
<?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\Bridge\Termii\Tests; use PHPUnit\Framework\T...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Termii/Tests/TermiiTransportTest.php
src/Symfony/Component/Notifier/Bridge/Termii/Tests/TermiiTransportTest.php
<?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\Bridge\Termii\Tests; use PHPUnit\Framework\A...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/MessageMedia/MessageMediaTransportFactory.php
src/Symfony/Component/Notifier/Bridge/MessageMedia/MessageMediaTransportFactory.php
<?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\Bridge\MessageMedia; use Symfony\Component\N...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/MessageMedia/MessageMediaOptions.php
src/Symfony/Component/Notifier/Bridge/MessageMedia/MessageMediaOptions.php
<?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\Bridge\MessageMedia; use Symfony\Component\N...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/MessageMedia/MessageMediaTransport.php
src/Symfony/Component/Notifier/Bridge/MessageMedia/MessageMediaTransport.php
<?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\Bridge\MessageMedia; use Symfony\Component\N...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/MessageMedia/Tests/MessageMediaOptionsTest.php
src/Symfony/Component/Notifier/Bridge/MessageMedia/Tests/MessageMediaOptionsTest.php
<?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\Bridge\MessageMedia\Tests; use PHPUnit\Frame...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/MessageMedia/Tests/MessageMediaTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/MessageMedia/Tests/MessageMediaTransportFactoryTest.php
<?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\Bridge\MessageMedia\Tests; use Symfony\Compo...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/MessageMedia/Tests/MessageMediaTransportTest.php
src/Symfony/Component/Notifier/Bridge/MessageMedia/Tests/MessageMediaTransportTest.php
<?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\Bridge\MessageMedia\Tests; use PHPUnit\Frame...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransportFactory.php
<?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\Bridge\LinkedIn; use Symfony\Component\Notif...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInOptions.php
<?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\Bridge\LinkedIn; use Symfony\Component\Notif...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/LinkedInTransport.php
<?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\Bridge\LinkedIn; use Symfony\Component\Notif...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AuthorShare.php
<?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\Bridge\LinkedIn\Share; /** * @author Smaïne...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareContentShare.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareContentShare.php
<?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\Bridge\LinkedIn\Share; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/AbstractLinkedInShare.php
<?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\Bridge\LinkedIn\Share; /** * @author Smaïne...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareMediaShare.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/ShareMediaShare.php
<?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\Bridge\LinkedIn\Share; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/LifecycleStateShare.php
<?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\Bridge\LinkedIn\Share; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/VisibilityShare.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Share/VisibilityShare.php
<?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\Bridge\LinkedIn\Share; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportFactoryTest.php
<?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\Bridge\LinkedIn\Tests; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportTest.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportTest.php
<?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\Bridge\LinkedIn\Tests; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInOptionsTest.php
src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInOptionsTest.php
<?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\Bridge\LinkedIn\Tests; use PHPUnit\Framework...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransportFactory.php
<?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\Bridge\Sinch; use Symfony\Component\Notifier...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransport.php
src/Symfony/Component/Notifier/Bridge/Sinch/SinchTransport.php
<?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\Bridge\Sinch; use Symfony\Component\Notifier...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportFactoryTest.php
<?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\Bridge\Sinch\Tests; use Symfony\Component\No...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportTest.php
src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportTest.php
<?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\Bridge\Sinch\Tests; use Symfony\Component\Ht...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php
src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransport.php
<?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\Bridge\GoogleChat; use Symfony\Component\Htt...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php
src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatTransportFactory.php
<?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\Bridge\GoogleChat; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php
src/Symfony/Component/Notifier/Bridge/GoogleChat/GoogleChatOptions.php
<?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\Bridge\GoogleChat; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php
<?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\Bridge\GoogleChat\Tests; use Symfony\Compone...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportTest.php
src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportTest.php
<?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\Bridge\GoogleChat\Tests; use Symfony\Compone...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatOptionsTest.php
src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatOptionsTest.php
<?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\Bridge\GoogleChat\Tests; use PHPUnit\Framewo...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Novu/NovuTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Novu/NovuTransportFactory.php
<?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\Bridge\Novu; use Symfony\Component\Notifier\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Novu/NovuSubscriberRecipient.php
src/Symfony/Component/Notifier/Bridge/Novu/NovuSubscriberRecipient.php
<?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\Bridge\Novu; use Symfony\Component\Notifier\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Novu/NovuOptions.php
src/Symfony/Component/Notifier/Bridge/Novu/NovuOptions.php
<?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\Bridge\Novu; use Symfony\Component\Notifier\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Novu/NovuTransport.php
src/Symfony/Component/Notifier/Bridge/Novu/NovuTransport.php
<?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\Bridge\Novu; use Symfony\Component\Notifier\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Novu/Tests/NovuOptionsTest.php
src/Symfony/Component/Notifier/Bridge/Novu/Tests/NovuOptionsTest.php
<?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\Bridge\Novu\Tests; use PHPUnit\Framework\Tes...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Novu/Tests/NovuTransportTest.php
src/Symfony/Component/Notifier/Bridge/Novu/Tests/NovuTransportTest.php
<?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\Bridge\Novu\Tests; use Symfony\Component\Htt...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Novu/Tests/NovuTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Novu/Tests/NovuTransportFactoryTest.php
<?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\Bridge\Novu\Tests; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Bandwidth/BandwidthTransport.php
src/Symfony/Component/Notifier/Bridge/Bandwidth/BandwidthTransport.php
<?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\Bridge\Bandwidth; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Bandwidth/BandwidthTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Bandwidth/BandwidthTransportFactory.php
<?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\Bridge\Bandwidth; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Bandwidth/BandwidthOptions.php
src/Symfony/Component/Notifier/Bridge/Bandwidth/BandwidthOptions.php
<?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\Bridge\Bandwidth; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Bandwidth/Tests/BandwidthOptionsTest.php
src/Symfony/Component/Notifier/Bridge/Bandwidth/Tests/BandwidthOptionsTest.php
<?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\Bridge\Bandwidth\Tests; use PHPUnit\Framewor...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Bandwidth/Tests/BandwidthTransportTest.php
src/Symfony/Component/Notifier/Bridge/Bandwidth/Tests/BandwidthTransportTest.php
<?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\Bridge\Bandwidth\Tests; use PHPUnit\Framewor...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Bandwidth/Tests/BandwidthTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Bandwidth/Tests/BandwidthTransportFactoryTest.php
<?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\Bridge\Bandwidth\Tests; use Symfony\Componen...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/PagerDuty/PagerDutyTransportFactory.php
src/Symfony/Component/Notifier/Bridge/PagerDuty/PagerDutyTransportFactory.php
<?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\Bridge\PagerDuty; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/PagerDuty/PagerDutyTransport.php
src/Symfony/Component/Notifier/Bridge/PagerDuty/PagerDutyTransport.php
<?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\Bridge\PagerDuty; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/PagerDuty/PagerDutyOptions.php
src/Symfony/Component/Notifier/Bridge/PagerDuty/PagerDutyOptions.php
<?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\Bridge\PagerDuty; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/PagerDuty/Tests/PagerDutyTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/PagerDuty/Tests/PagerDutyTransportFactoryTest.php
<?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\Bridge\PagerDuty\Tests; use Symfony\Componen...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/PagerDuty/Tests/PagerDutyTransportTest.php
src/Symfony/Component/Notifier/Bridge/PagerDuty/Tests/PagerDutyTransportTest.php
<?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\Bridge\PagerDuty\Tests; use Symfony\Componen...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransport.php
src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransport.php
<?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\Bridge\RocketChat; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatOptions.php
src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatOptions.php
<?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\Bridge\RocketChat; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransportFactory.php
src/Symfony/Component/Notifier/Bridge/RocketChat/RocketChatTransportFactory.php
<?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\Bridge\RocketChat; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportFactoryTest.php
<?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\Bridge\RocketChat\Tests; use Symfony\Compone...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatOptionsTest.php
src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatOptionsTest.php
<?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\Bridge\RocketChat\Tests; use PHPUnit\Framewo...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportTest.php
src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportTest.php
<?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\Bridge\RocketChat\Tests; use Symfony\Compone...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Unifonic/UnifonicTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Unifonic/UnifonicTransportFactory.php
<?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\Bridge\Unifonic; use Symfony\Component\Notif...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Unifonic/UnifonicTransport.php
src/Symfony/Component/Notifier/Bridge/Unifonic/UnifonicTransport.php
<?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\Bridge\Unifonic; use Symfony\Component\Notif...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Unifonic/Tests/UnifonicTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Unifonic/Tests/UnifonicTransportFactoryTest.php
<?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\Bridge\Unifonic\Tests; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Unifonic/Tests/UnifonicTransportTest.php
src/Symfony/Component/Notifier/Bridge/Unifonic/Tests/UnifonicTransportTest.php
<?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\Bridge\Unifonic\Tests; use Symfony\Component...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransportFactory.php
<?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\Bridge\Esendex; use Symfony\Component\Notifi...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexOptions.php
src/Symfony/Component/Notifier/Bridge/Esendex/EsendexOptions.php
<?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\Bridge\Esendex; use Symfony\Component\Notifi...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php
src/Symfony/Component/Notifier/Bridge/Esendex/EsendexTransport.php
<?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\Bridge\Esendex; use Symfony\Component\HttpCl...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportTest.php
src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportTest.php
<?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\Bridge\Esendex\Tests; use Symfony\Component\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportFactoryTest.php
<?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\Bridge\Esendex\Tests; use Symfony\Component\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexOptionsTest.php
src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexOptionsTest.php
<?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\Bridge\Esendex\Tests; use PHPUnit\Framework\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Smsense/SmsenseTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Smsense/SmsenseTransportFactory.php
<?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\Bridge\Smsense; use Symfony\Component\Notifi...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Smsense/SmsenseTransport.php
src/Symfony/Component/Notifier/Bridge/Smsense/SmsenseTransport.php
<?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\Bridge\Smsense; use Symfony\Component\Notifi...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Smsense/Tests/SmsenseTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Smsense/Tests/SmsenseTransportFactoryTest.php
<?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\Bridge\Smsense\Tests; use Symfony\Component\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Smsense/Tests/SmsenseTransportTest.php
src/Symfony/Component/Notifier/Bridge/Smsense/Tests/SmsenseTransportTest.php
<?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\Bridge\Smsense\Tests; use PHPUnit\Framework\...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sendberry/SendberryTransport.php
src/Symfony/Component/Notifier/Bridge/Sendberry/SendberryTransport.php
<?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\Bridge\Sendberry; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sendberry/SendberryTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Sendberry/SendberryTransportFactory.php
<?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\Bridge\Sendberry; use Symfony\Component\Noti...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sendberry/Tests/SendberryTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Sendberry/Tests/SendberryTransportFactoryTest.php
<?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\Bridge\Sendberry\Tests; use Symfony\Componen...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Sendberry/Tests/SendberryTransportTest.php
src/Symfony/Component/Notifier/Bridge/Sendberry/Tests/SendberryTransportTest.php
<?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\Bridge\Sendberry\Tests; use Symfony\Componen...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Pushy/PushyOptions.php
src/Symfony/Component/Notifier/Bridge/Pushy/PushyOptions.php
<?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\Bridge\Pushy; use Symfony\Component\Notifier...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Pushy/PushyTransport.php
src/Symfony/Component/Notifier/Bridge/Pushy/PushyTransport.php
<?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\Bridge\Pushy; use Symfony\Component\Notifier...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Pushy/PushyTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Pushy/PushyTransportFactory.php
<?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\Bridge\Pushy; use Symfony\Component\Notifier...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Pushy/Enum/InterruptionLevel.php
src/Symfony/Component/Notifier/Bridge/Pushy/Enum/InterruptionLevel.php
<?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\Bridge\Pushy\Enum; /** * @author Joseph Bie...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Pushy/Tests/PushyTransportFactoryTest.php
src/Symfony/Component/Notifier/Bridge/Pushy/Tests/PushyTransportFactoryTest.php
<?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\Bridge\Pushy\Tests; use Symfony\Component\No...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Pushy/Tests/PushyOptionsTest.php
src/Symfony/Component/Notifier/Bridge/Pushy/Tests/PushyOptionsTest.php
<?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\Bridge\Pushy\Tests; use PHPUnit\Framework\Te...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Pushy/Tests/PushyTransportTest.php
src/Symfony/Component/Notifier/Bridge/Pushy/Tests/PushyTransportTest.php
<?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\Bridge\Pushy\Tests; use Symfony\Component\Ht...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Engagespot/EngagespotTransport.php
src/Symfony/Component/Notifier/Bridge/Engagespot/EngagespotTransport.php
<?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\Bridge\Engagespot; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false
symfony/symfony
https://github.com/symfony/symfony/blob/9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8/src/Symfony/Component/Notifier/Bridge/Engagespot/EngagespotTransportFactory.php
src/Symfony/Component/Notifier/Bridge/Engagespot/EngagespotTransportFactory.php
<?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\Bridge\Engagespot; use Symfony\Component\Not...
php
MIT
9eb3243dd3c2b40347ed54c80e64d23eda1ac7d8
2026-01-04T15:02:34.231510Z
false