Completed
Push — 5.0 ( cadd37...918ecf )
by Ruud
100:31 queued 89:28
created
src/Kunstmaan/FormBundle/AdminList/FormPageAdminListConfigurator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
      *
119 119
      * @param array $params
120 120
      *
121
-     * @return array
121
+     * @return string
122 122
      */
123 123
     public function getAddUrlFor(array $params = array())
124 124
     {
Please login to merge, or discard this patch.
src/Kunstmaan/FormBundle/Controller/AbstractFormPageController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     /**
13 13
      * @param Request $request
14
-     * @return null
14
+     * @return Response|null
15 15
      */
16 16
     public function serviceAction(Request $request)
17 17
     {
Please login to merge, or discard this patch.
src/Kunstmaan/FormBundle/Entity/FormSubmission.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Get id
79 79
      *
80
-     * @return integer
80
+     * @return string
81 81
      */
82 82
     public function getId()
83 83
     {
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Set the date when the form submission was created
175 175
      *
176
-     * @param datetime $created
176
+     * @param DateTime $created
177 177
      *
178 178
      * @return FormSubmission
179 179
      */
Please login to merge, or discard this patch.
src/Kunstmaan/FormBundle/Entity/FormSubmissionField.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Get id
69 69
      *
70
-     * @return integer
70
+     * @return string
71 71
      */
72 72
     public function getId()
73 73
     {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     /**
164 164
      * Get sequence
165 165
      *
166
-     * @return integer
166
+     * @return string
167 167
      */
168 168
     public function getSequence()
169 169
     {
Please login to merge, or discard this patch.
src/Kunstmaan/FormBundle/Entity/PageParts/AbstractFormPagePart.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     /**
49 49
      * Get the label used for this page part
50 50
      *
51
-     * @return string
51
+     * @return integer
52 52
      */
53 53
     public function getLabel()
54 54
     {
Please login to merge, or discard this patch.
src/Kunstmaan/FormBundle/Entity/PageParts/FileUploadPagePart.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
     /**
125 125
      * Returns the view used in the frontend
126 126
      *
127
-     * @return mixed
127
+     * @return string
128 128
      */
129 129
     public function getDefaultView()
130 130
     {
Please login to merge, or discard this patch.
src/Kunstmaan/FormBundle/Entity/PageParts/SubmitButtonPagePart.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * Get the label
41 41
      *
42
-     * @return string
42
+     * @return integer
43 43
      */
44 44
     public function getLabel()
45 45
     {
Please login to merge, or discard this patch.
src/Kunstmaan/FormBundle/Helper/FormMailerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -15,6 +15,7 @@
 block discarded – undo
15 15
      * @param string         $from       The from address
16 16
      * @param string         $to         The to address(es) seperated by \n
17 17
      * @param string         $subject    The subject
18
+     * @return void
18 19
      */
19 20
     public function sendContactMail(FormSubmission $submission, $from, $to, $subject);
20 21
 
Please login to merge, or discard this patch.
src/Kunstmaan/GeneratorBundle/Command/GenerateBundleCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      * @param OutputInterface $output An OutputInterface instance
62 62
      *
63 63
      * @throws \RuntimeException
64
-     * @return void
64
+     * @return integer|null
65 65
      */
66 66
     protected function execute(InputInterface $input, OutputInterface $output)
67 67
     {
Please login to merge, or discard this patch.