Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Feb 16, 2023
1 parent 89ddc0d commit cfc7a00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions Tests/Transport/ConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

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

use InvalidArgumentException;
use Pheanstalk\Contract\PheanstalkInterface;
use Pheanstalk\Exception;
use Pheanstalk\Exception\ClientException;
Expand All @@ -30,7 +29,7 @@ final class ConnectionTest extends TestCase
{
public function testFromInvalidDsn()
{
$this->expectException(InvalidArgumentException::class);
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('The given Beanstalkd DSN "beanstalkd://" is invalid.');

Connection::fromDsn('beanstalkd://');
Expand Down
1 change: 1 addition & 0 deletions Transport/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* @author Antonio Pauletich <[email protected]>
*
* @internal
*
* @final
*/
class Connection
Expand Down

0 comments on commit cfc7a00

Please sign in to comment.