Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 949dd3f

Browse files
committedAug 25, 2018
add strict to mongodb, null, and pheanstalk transports.
1 parent cf972c2 commit 949dd3f

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed
 

‎MongodbConnectionFactory.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Enqueue\Mongodb;
46

57
use Interop\Queue\PsrConnectionFactory;

‎MongodbConsumer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Enqueue\Mongodb;
46

57
use Interop\Queue\InvalidMessageException;

‎MongodbContext.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Enqueue\Mongodb;
46

57
use Interop\Queue\InvalidDestinationException;

‎MongodbDestination.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Enqueue\Mongodb;
46

57
use Interop\Queue\PsrQueue;

‎MongodbMessage.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Enqueue\Mongodb;
46

57
use Interop\Queue\PsrMessage;

‎MongodbProducer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace Enqueue\Mongodb;
46

57
use Interop\Queue\Exception;

0 commit comments

Comments
 (0)
Please sign in to comment.