Completed
Push — master ( 1e5517...95449e )
by Nicolaas
01:24
created
code/model/Advertisement.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -273,7 +273,7 @@
 block discarded – undo
273 273
 
274 274
     /**
275 275
      *
276
-     * @return bool
276
+     * @return string|false
277 277
      */
278 278
     protected function callbackFilterFunctionForMultiSelect()
279 279
     {
Please login to merge, or discard this patch.
code/model/AdvertisementDecorator.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -220,6 +220,9 @@  discard block
 block discarded – undo
220 220
         return "Root.".$code;
221 221
     }
222 222
 
223
+    /**
224
+     * @param string $title
225
+     */
223 226
     protected function MyHeaderField($title)
224 227
     {
225 228
         $code = preg_replace("/[^a-zA-Z0-9\s]/", "", $title);
@@ -227,6 +230,9 @@  discard block
 block discarded – undo
227 230
         return new LiteralField($code, "<h4 style='margin-top: 20px'>$title</h4>");
228 231
     }
229 232
 
233
+    /**
234
+     * @param string $title
235
+     */
230 236
     protected function MyHeaderFieldLarge($title)
231 237
     {
232 238
         $code = preg_replace("/[^a-zA-Z0-9\s]/", "", $title);
Please login to merge, or discard this patch.