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 Application; | |
| use Application\DependencyInjection\RemoveObjectNormalizerPass; | |
| use Symfony\Component\Config\Loader\LoaderInterface; | |
| use Symfony\Component\DependencyInjection\Compiler\PassConfig; | |
| use Symfony\Component\DependencyInjection\ContainerBuilder; |
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 App\Console; | |
| use Symfony\Component\Console\Command\Command; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Output\OutputInterface; | |
| use Symfony\Component\Console\Style\SymfonyStyle; |
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 App\PropertyInfo; | |
| use Symfony\Component\PropertyInfo\PropertyTypeExtractorInterface; | |
| use Symfony\Component\PropertyInfo\Type; | |
| final class Php74ReflectionExtractor implements PropertyTypeExtractorInterface |
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); | |
| use Psr\Log\LoggerAwareInterface; | |
| use Psr\Log\LoggerAwareTrait; | |
| final class A implements I, LoggerAwareInterface | |
| { | |
| use LoggerAwareTrait; |
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 Infrastructure\Messaging; | |
| use Doctrine\Persistence\ManagerRegistry; | |
| use Psr\Log\LoggerInterface; | |
| use Symfony\Component\Messenger\Envelope; | |
| use Symfony\Component\Messenger\Middleware\MiddlewareInterface; |
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 Infrastructure\Uuid; | |
| use Ramsey\Uuid\Nonstandard\UuidV6; | |
| use Ramsey\Uuid\Rfc4122\UuidV1; | |
| use Ramsey\Uuid\Uuid; |
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); | |
| /** | |
| * Computes the difference between two dates in milliseconds. | |
| * | |
| * @psalm-pure | |
| * | |
| * @return int $a - $b |
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
| MAILER_DSN=insmtp://0.0.0.0 |
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 | |
| /** | |
| * @return array<string, mixed> | |
| */ | |
| function objectToArray(object $object): array | |
| { | |
| return (fn (): array => get_object_vars($this))->call($object); | |
| } |