• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

systemsdk / docker-apache-php-symfony / #66

22 Jun 2025 05:44PM UTC coverage: 0.0%. Remained the same
#66

push

DKravtsov
symfony 7.3, mysql 8.4.5, rabbitmq 4.1, xdebug 3.4.4, updated composer dependencies and documentation.

0 of 9 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Service/MessageService.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\Service;
6

7
use App\Message\TestMessage;
8
use App\Service\Interfaces\MessageServiceInterface;
9
use Symfony\Component\Messenger\Envelope;
10
use Symfony\Component\Messenger\MessageBusInterface;
11

12
/**
13
 * @package App\Service
14
 */
15
class MessageService implements MessageServiceInterface
16
{
17
    public function __construct(
18
        private readonly MessageBusInterface $bus
19
    ) {
20
    }
×
21

22
    /**
23
     * TODO: This is example for creating test message, you can delete it.
24
     */
25
    public function sendTestMessage(string $someId): self
26
    {
27
        $this->bus->dispatch(new Envelope(new TestMessage($someId)));
×
28

29
        return $this;
×
30
    }
31
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc