Completed
Push — issue/15770_create_EmailUpdatC... ( 658101 )
by Dominik
26:52
created
Services/AzineEmailOpenTrackingCodeBuilder.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * concatenate all recipients into an array and implode with ';' to a string.
100 100
      *
101
-     * @param string|array $to
102
-     * @param string|array $cc
103
-     * @param string|array $bcc
101
+     * @param string $to
102
+     * @param string $cc
103
+     * @param string $bcc
104 104
      *
105 105
      * @return string
106 106
      */
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      * @param array        $campaignParams
131 131
      * @param array        $emailTemplateParams
132 132
      * @param string       $messageId
133
-     * @param string|array $recipients
133
+     * @param string $recipients
134 134
      *
135 135
      * @return string
136 136
      */
Please login to merge, or discard this patch.
Services/AzineEmailTwigExtension.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -155,6 +155,7 @@
 block discarded – undo
155 155
      * - remove double-whitespaces and whitespaces at line beginnings and ends.
156 156
      * - html-special chars to their original representation (php => htmlspecialchars_decode)
157 157
      * and then remove all html-tags (php => strip_tags).
158
+     * @param string $html
158 159
      */
159 160
     public function stripAndConvertTags($html)
160 161
     {
Please login to merge, or discard this patch.
Services/ExampleTemplateProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
      *
121 121
      * @see Azine\EmailBundle\Services\AzineTemplateProvider::getTemplatesToStoreForWebView()
122 122
      *
123
-     * @return array
123
+     * @return string[]
124 124
      */
125 125
     public function getTemplatesToStoreForWebView()
126 126
     {
Please login to merge, or discard this patch.
Tests/Command/ClearAndLogFailedMailsCommandTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      * @param string[] $failedRecipients
89 89
      * @param bool     $noSpoolPath
90 90
      * @param bool     $noTransport
91
-     * @param null     $msgCount
91
+     * @param \PHPUnit_Framework_MockObject_Matcher_InvokedCount     $msgCount
92 92
      *
93 93
      * @internal param string $message
94 94
      *
Please login to merge, or discard this patch.
Services/AzineTwigSwiftMailer.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -116,18 +116,18 @@  discard block
 block discarded – undo
116 116
      * @param string       $subject
117 117
      * @param string       $from
118 118
      * @param string       $fromName
119
-     * @param array|string $to
119
+     * @param string $to
120 120
      * @param string       $toName
121
-     * @param array|string $cc
121
+     * @param null|string $cc
122 122
      * @param string       $ccName
123
-     * @param array|string $bcc
123
+     * @param null|string $bcc
124 124
      * @param string       $bccName
125 125
      * @param $replyTo
126 126
      * @param $replyToName
127 127
      * @param array $params
128 128
      * @param $template
129 129
      * @param array          $attachments
130
-     * @param null           $emailLocale
130
+     * @param string|null           $emailLocale
131 131
      * @param \Swift_Message $message
132 132
      *
133 133
      * @return int
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
      * @param array          $params
470 470
      * @param string         $template
471 471
      * @param string         $emailLocale
472
-     * @param null           $from
472
+     * @param string           $from
473 473
      * @param null           $fromName
474 474
      * @param \Swift_Message $message
475 475
      *
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
      * @param $confirmationUrl
531 531
      * @param $toEmail
532 532
      *
533
-     * @return bool
533
+     * @return boolean|null
534 534
      */
535 535
     public function sendUpdateEmailConfirmation(UserInterface $user, $confirmationUrl, $toEmail)
536 536
     {
Please login to merge, or discard this patch.