Skip to content

Commit 3aa7227

Browse files
committed
Applied further improvements [skip ci]
This commit basically contains improvements helping the IDE to provide better support for autocomplete functionality. See #2
1 parent fa4c8e8 commit 3aa7227

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

files/lib/acp/form/WoltlabVendorAPIPluginstoreFileEditForm.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class WoltlabVendorAPIPluginstoreFileEditForm extends AbstractForm {
3535

3636
/**
3737
* File
38-
* @var wcf\data\woltlab\pluginstore\file\WoltlabPluginstoreFile
38+
* @var WoltlabPluginstoreFile
3939
*/
4040
public $file = null;
4141

files/lib/data/woltlab/pluginstore/file/WoltlabPluginstoreFileAction.class.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class WoltlabPluginstoreFileAction extends AbstractDatabaseObjectAction implemen
2828
* @inheritdoc
2929
*/
3030
public function create() {
31+
/** @var WoltlabPluginstoreFile $file */
3132
$file = parent::create();
3233

3334
if (isset($this->parameters['fetchLocalizedTitle']) && $this->parameters['fetchLocalizedTitle']) {

files/lib/system/api/woltlab/vendor/WoltlabVendorAPI.class.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
class WoltlabVendorAPI extends SingletonFactory {
1818
/**
1919
* API url
20+
* @var string
2021
*/
2122
const API_URL_VENDOR_CUSTOMER = 'https://api.woltlab.com/1.2/customer/vendor/list.json';
2223

@@ -30,7 +31,7 @@ class WoltlabVendorAPI extends SingletonFactory {
3031

3132
/**
3233
* Active request
33-
* @var wcf\util\HTTPRequest
34+
* @var HTTPRequest
3435
*/
3536
protected $request = null;
3637

files/lib/system/cronjob/WoltlabVendorAPIPluginStoreFileIDsDownloadCronjob.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class WoltlabVendorAPIPluginStoreFileIDsDownloadCronjob extends AbstractCronjob {
2222
/**
2323
* List of current files
24-
* @var wcf\data\woltlab\pluginstore\file\WoltlabPluginstoreFileList
24+
* @var WoltlabPluginstoreFileList
2525
*/
2626
public $fileList = null;
2727

0 commit comments

Comments
 (0)