Skip to content

Commit dcafc50

Browse files
Merge branch '5.4' into 6.2
* 5.4: CS fix Fix test provider
2 parents 09cb05d + cfc7a00 commit dcafc50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Transport/ConnectionTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Symfony\Component\Messenger\Bridge\Beanstalkd\Tests\Transport;
1313

14-
use InvalidArgumentException;
1514
use Pheanstalk\Contract\PheanstalkInterface;
1615
use Pheanstalk\Exception;
1716
use Pheanstalk\Exception\ClientException;
@@ -30,7 +29,7 @@ final class ConnectionTest extends TestCase
3029
{
3130
public function testFromInvalidDsn()
3231
{
33-
$this->expectException(InvalidArgumentException::class);
32+
$this->expectException(\InvalidArgumentException::class);
3433
$this->expectExceptionMessage('The given Beanstalkd DSN "beanstalkd://" is invalid.');
3534

3635
Connection::fromDsn('beanstalkd://');

Transport/Connection.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* @author Antonio Pauletich <[email protected]>
2424
*
2525
* @internal
26+
*
2627
* @final
2728
*/
2829
class Connection

0 commit comments

Comments
 (0)