Completed
Push — branch_1.0 ( 52e009...0b10c4 )
by Dominik
16:34 queued 15:10
created
Services/ExampleTemplateProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     /**
107 107
      * Override this function to define which emails you want to make the web-view available and for which not.
108 108
      * @see Azine\EmailBundle\Services\AzineTemplateProvider::getTemplatesToStoreForWebView()
109
-     * @return array
109
+     * @return string[]
110 110
      */
111 111
     public function getTemplatesToStoreForWebView()
112 112
     {
Please login to merge, or discard this patch.
Services/TemplateProviderInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,6 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * Get the filesystem-folder for the given key
56
+     * @param string $key
56 57
      * @return string the fs-folder | false
57 58
      */
58 59
     public function getFolderFrom($key);
@@ -78,7 +79,7 @@  discard block
 block discarded – undo
78 79
      * Get the url-query-parameters for campaign identification.
79 80
      * If you work with GoogleAnalytics take a look at this page: https://support.google.com/analytics/answer/1033867
80 81
      *
81
-     * @param  array $template parameters already loaded
82
+     * @param  string $templateId parameters already loaded
82 83
      * @return array of (string => string)
83 84
      */
84 85
     public function getCampaignParamsFor($templateId, array $params = null);
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
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * @param string[] $failedRecipients
88 88
      * @param bool $noSpoolPath
89 89
      * @param bool $noTransport
90
-     * @param null $msgCount
90
+     * @param \PHPUnit_Framework_MockObject_Matcher_InvokedCount $msgCount
91 91
      * @internal param string $message
92 92
      * @return ContainerInterface
93 93
      */
Please login to merge, or discard this patch.
Tests/Controller/AzineEmailTemplateControllerTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@  discard block
 block discarded – undo
5 5
 use Azine\EmailBundle\Services\AzineTemplateProvider;
6 6
 use Azine\EmailBundle\Entity\SentEmail;
7 7
 use Azine\EmailBundle\Controller\AzineEmailTemplateController;
8
-
9 8
 use Symfony\Component\DependencyInjection\ContainerInterface;
10 9
 use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
11 10
 use Symfony\Component\HttpFoundation\ParameterBag;
@@ -13,7 +12,6 @@  discard block
 block discarded – undo
13 12
 use Symfony\Component\HttpFoundation\Response;
14 13
 use Symfony\Component\Routing\RequestContext;
15 14
 use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
16
-
17 15
 use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
18 16
 
19 17
 /**
Please login to merge, or discard this patch.