Completed
Push — master ( 587724...a55d5c )
by Robbie
12:34
created
src/Extensions/SiteTreeContentReview.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
     }
307 307
 
308 308
     /**
309
-     * @return ManyManyList
309
+     * @return SS_List
310 310
      */
311 311
     public function OwnerGroups()
312 312
     {
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
     }
315 315
 
316 316
     /**
317
-     * @return ManyManyList
317
+     * @return SS_List
318 318
      */
319 319
     public function OwnerUsers()
320 320
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,7 @@
 block discarded – undo
11 11
 use SilverStripe\Core\Manifest\ModuleLoader;
12 12
 use SilverStripe\Forms\FieldList;
13 13
 use SilverStripe\Forms\LiteralField;
14
-use SilverStripe\Forms\FormAction;
15 14
 use SilverStripe\Forms\CompositeField;
16
-use SilverStripe\Forms\Tab;
17 15
 use SilverStripe\Forms\DateField;
18 16
 use SilverStripe\Forms\DateTimeField;
19 17
 use SilverStripe\Forms\DropdownField;
Please login to merge, or discard this patch.
src/Tasks/ContentReviewEmails.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
     /**
75 75
      * @param int           $ownerID
76
-     * @param array|SS_List $pages
76
+     * @param SS_List $pages
77 77
      */
78 78
     protected function notifyOwner($ownerID, SS_List $pages)
79 79
     {
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      * @param SiteConfig $config
113 113
      * @param array List of safe template variables to expose to this template
114 114
      *
115
-     * @return HTMLText
115
+     * @return DBField
116 116
      */
117 117
     protected function getEmailBody($config, $variables)
118 118
     {
Please login to merge, or discard this patch.
tests/php/ContentReviewSettingsTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
      * @param int               $days
293 293
      * @param string            $format
294 294
      *
295
-     * @return bool|string
295
+     * @return null|string
296 296
      */
297 297
     private function addDaysToDate($date, $days, $format = 'Y-MM-dd')
298 298
     {
Please login to merge, or discard this patch.