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

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

pending completion
#46

push

web-flow
Bump guzzlehttp/psr7 from 2.4.4 to 2.5.0 in /tools/04_php-coveralls

Bumps [guzzlehttp/psr7](https://github.com/guzzle/psr7) from 2.4.4 to 2.5.0.
- [Release notes](https://github.com/guzzle/psr7/releases)
- [Changelog](https://github.com/guzzle/psr7/blob/2.5/CHANGELOG.md)
- [Commits](https://github.com/guzzle/psr7/compare/2.4.4...2.5.0)

---
updated-dependencies:
- dependency-name: guzzlehttp/psr7
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

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
 * Class MessageService
14
 *
15
 * @package App\Service
16
 */
17
class MessageService implements MessageServiceInterface
18
{
19
    /**
20
     * Constructor
21
     */
22
    public function __construct(
23
        private readonly MessageBusInterface $bus
24
    ) {
25
    }
×
26

27
    /**
28
     * TODO: This is example for creating test message, you can delete it.
29
     */
30
    public function sendTestMessage(string $someId): self
31
    {
32
        $this->bus->dispatch(new Envelope(new TestMessage($someId)));
×
33

34
        return $this;
×
35
    }
36
}
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

© 2026 Coveralls, Inc