Completed
Push — master ( 1e5517...95449e )
by Nicolaas
01:24
created
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.