Completed
Push — master ( 8f1815...8f409a )
by Antonio
02:27
created
src/Queue/Backend/Pdo/PdoQueueStoreAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * Returns a MailJob extracted from the database. The row at the database is marked as 'A'ctive or in process.
71 71
      *
72
-     * @return MailJobInterface|PdoMailJob
72
+     * @return PdoMailJob|null
73 73
      */
74 74
     public function dequeue()
75 75
     {
Please login to merge, or discard this patch.
src/Queue/Backend/Sqs/SqsQueueStoreAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     /**
79 79
      * Returns a MailJob fetched from Amazon SQS.
80 80
      *
81
-     * @return MailJobInterface|SqsMailJob
81
+     * @return null|SqsMailJob
82 82
      */
83 83
     public function dequeue()
84 84
     {
Please login to merge, or discard this patch.
src/Queue/MailQueue.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Da\Mailer\Queue\Backend\AbstractQueueStoreConnection;
6 6
 use Da\Mailer\Queue\Backend\MailJobInterface;
7 7
 use Da\Mailer\Queue\Backend\QueueStoreAdapterInterface;
8
-use Da\Mailer\Security\Cypher;
9 8
 use Da\Mailer\Security\CypherInterface;
10 9
 
11 10
 final class MailQueue implements QueueStoreAdapterInterface
Please login to merge, or discard this patch.