Completed
Push — master ( 2b4610...a5af43 )
by Robbie
02:08
created
src/Model/BlogController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     /**
103 103
      * Get the Member associated with the current URL segment.
104 104
      *
105
-     * @return null|Member
105
+     * @return \SilverStripe\ORM\DataObject|null
106 106
      */
107 107
     public function getCurrentProfile()
108 108
     {
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     /**
258 258
      * Tag Getter for use in templates.
259 259
      *
260
-     * @return null|BlogTag
260
+     * @return \SilverStripe\ORM\DataObject|null
261 261
      */
262 262
     public function getCurrentTag()
263 263
     {
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
     /**
308 308
      * Category Getter for use in templates.
309 309
      *
310
-     * @return null|BlogCategory
310
+     * @return \SilverStripe\ORM\DataObject|null
311 311
      */
312 312
     public function getCurrentCategory()
313 313
     {
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
     /**
521 521
      * Returns the current archive date.
522 522
      *
523
-     * @return null|DBDatetime
523
+     * @return BlogController|null
524 524
      */
525 525
     public function getArchiveDate()
526 526
     {
Please login to merge, or discard this patch.
src/Model/BlogPost.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use SilverStripe\Core\Config\Config;
10 10
 use SilverStripe\Forms\DatetimeField;
11 11
 use SilverStripe\Forms\FieldList;
12
-use SilverStripe\Forms\HTMLEditor\HTMLEditorField;
13 12
 use SilverStripe\Forms\ListboxField;
14 13
 use SilverStripe\Forms\TextField;
15 14
 use SilverStripe\Forms\ToggleCompositeField;
Please login to merge, or discard this patch.