Completed
Push — master ( 0c6a92...001811 )
by Damian
14:34
created
code/Model/SiteTreeFileExtension.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace SilverStripe\CMS\Model;
4 4
 
5 5
 use SilverStripe\Assets\File;
6
-use SilverStripe\Core\Convert;
7 6
 use SilverStripe\Forms\FieldList;
8 7
 use SilverStripe\Forms\ReadonlyField;
9 8
 use SilverStripe\ORM\DataExtension;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     /**
62 62
      * Generate an HTML list which provides links to where a file is used.
63 63
      *
64
-     * @return string
64
+     * @return \SilverStripe\ORM\FieldType\DBHTMLText
65 65
      */
66 66
     public function BackLinkHTMLList()
67 67
     {
Please login to merge, or discard this patch.
code/Forms/SiteTreeURLSegmentField.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use SilverStripe\Control\HTTPRequest;
8 8
 use SilverStripe\Core\Convert;
9 9
 use SilverStripe\Forms\TextField;
10
-use SilverStripe\View\Requirements;
11 10
 
12 11
 /**
13 12
  * Used to edit the SiteTree->URLSegment property, and suggest input based on the serverside rules
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -137,6 +137,9 @@
 block discarded – undo
137 137
         return $this->defaultUrl;
138 138
     }
139 139
 
140
+    /**
141
+     * @param string $url
142
+     */
140 143
     public function setDefaultURL($url)
141 144
     {
142 145
         $this->defaultUrl = $url;
Please login to merge, or discard this patch.
code/Controllers/CMSPageEditController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      *
44 44
      * @param array $data
45 45
      * @param Form $form
46
-     * @return DBHTMLText|HTTPResponse
46
+     * @return null|HTTPResponse
47 47
      */
48 48
     public function addtocampaign($data, $form)
49 49
     {
Please login to merge, or discard this patch.
code/Controllers/SilverStripeNavigatorItem.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     protected $recordLink;
26 26
 
27 27
     /**
28
-     * @param DataObject|CMSPreviewable $record
28
+     * @param CMSPreviewable $record
29 29
      */
30 30
     public function __construct(CMSPreviewable $record)
31 31
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @return DataObject
79
+     * @return CMSPreviewable
80 80
      */
81 81
     public function getRecord()
82 82
     {
Please login to merge, or discard this patch.
code/Model/SiteTree.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -782,7 +782,7 @@
 block discarded – undo
782 782
      * @param boolean $unlinked Whether to link page titles.
783 783
      * @param boolean|string $stopAtPageType ClassName of a page to stop the upwards traversal.
784 784
      * @param boolean $showHidden Include pages marked with the attribute ShowInMenus = 0
785
-     * @return string The breadcrumb trail.
785
+     * @return \SilverStripe\ORM\FieldType\DBHTMLText The breadcrumb trail.
786 786
      */
787 787
     public function Breadcrumbs($maxDepth = 20, $unlinked = false, $stopAtPageType = false, $showHidden = false)
788 788
     {
Please login to merge, or discard this patch.
code/Model/VirtualPage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -379,6 +379,9 @@
 block discarded – undo
379 379
         return null;
380 380
     }
381 381
 
382
+    /**
383
+     * @param string $field
384
+     */
382 385
     public function getField($field)
383 386
     {
384 387
         if ($this->isFieldVirtualised($field)) {
Please login to merge, or discard this patch.
code/Reports/RecentlyEditedReport.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use SilverStripe\CMS\Model\SiteTree;
6 6
 use SilverStripe\ORM\FieldType\DBDatetime;
7
-use SilverStripe\ORM\DataObject;
8 7
 use SilverStripe\Reports\Report;
9 8
 
10 9
 class RecentlyEditedReport extends Report
Please login to merge, or discard this patch.
code/Controllers/SilverStripeNavigator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     protected $record;
29 29
 
30 30
     /**
31
-     * @param DataObject|\SilverStripe\ORM\CMSPreviewable $record
31
+     * @param CMSPreviewable $record
32 32
      */
33 33
     public function __construct(CMSPreviewable $record)
34 34
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @param DataObject|CMSPreviewable $record
82
+     * @param DataObject $record
83 83
      * @return array template data
84 84
      */
85 85
     public static function get_for_record($record)
Please login to merge, or discard this patch.
code/Controllers/CMSMain.php 2 patches
Doc Comments   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -346,6 +346,9 @@  discard block
 block discarded – undo
346 346
         }
347 347
     }
348 348
 
349
+    /**
350
+     * @param string $link
351
+     */
349 352
     public function LinkWithSearch($link)
350 353
     {
351 354
         // Whitelist to avoid side effects
@@ -484,7 +487,7 @@  discard block
 block discarded – undo
484 487
     /**
485 488
      * Get callback to determine template customisations for nodes
486 489
      *
487
-     * @return callable
490
+     * @return \Closure
488 491
      */
489 492
     protected function getTreeNodeCustomisations()
490 493
     {
@@ -1263,7 +1266,7 @@  discard block
 block discarded – undo
1263 1266
 
1264 1267
     /**
1265 1268
      * @param HTTPRequest $request
1266
-     * @return string HTML
1269
+     * @return HTTPResponse HTML
1267 1270
      */
1268 1271
     public function treeview($request)
1269 1272
     {
@@ -1272,7 +1275,7 @@  discard block
 block discarded – undo
1272 1275
 
1273 1276
     /**
1274 1277
      * @param HTTPRequest $request
1275
-     * @return string HTML
1278
+     * @return HTTPResponse HTML
1276 1279
      */
1277 1280
     public function listview($request)
1278 1281
     {
@@ -1626,7 +1629,7 @@  discard block
 block discarded – undo
1626 1629
      * Actually perform the publication step
1627 1630
      *
1628 1631
      * @param Versioned|DataObject $record
1629
-     * @return mixed
1632
+     * @return HTTPResponse|null
1630 1633
      */
1631 1634
     public function performPublish($record)
1632 1635
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@  discard block
 block discarded – undo
4 4
 
5 5
 use SilverStripe\Admin\AdminRootController;
6 6
 use SilverStripe\Admin\CMSBatchActionHandler;
7
-use SilverStripe\Admin\LeftAndMain_SearchFilter;
8 7
 use SilverStripe\Admin\LeftAndMainFormRequestHandler;
9 8
 use SilverStripe\CMS\Model\VirtualPage;
10 9
 use SilverStripe\Core\Environment;
@@ -20,7 +19,6 @@  discard block
 block discarded – undo
20 19
 use SilverStripe\CMS\Model\SiteTree;
21 20
 use SilverStripe\Control\Controller;
22 21
 use SilverStripe\Control\Director;
23
-use SilverStripe\Control\Session;
24 22
 use SilverStripe\Control\HTTPRequest;
25 23
 use SilverStripe\Control\HTTPResponse;
26 24
 use SilverStripe\Control\HTTPResponse_Exception;
Please login to merge, or discard this patch.