Skip to content

Commit

Permalink
Fix inline doc blocks for IDE hinting
Browse files Browse the repository at this point in the history
  • Loading branch information
photodude committed Mar 8, 2018
1 parent ad6f5db commit 85d7efd
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions installation/controller/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerDefault extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Get the document object.
Expand Down Expand Up @@ -105,7 +105,7 @@ public function execute()
$vClass = 'InstallationViewDefault';
}

/* @var JViewHtml $view */
/** @var JViewHtml $view */
$view = new $vClass($model, $paths);
$view->setLayout($lName);

Expand Down
2 changes: 1 addition & 1 deletion installation/controller/detectftproot.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerDetectftproot extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/ftp.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerFtp extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/install/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerInstallConfig extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/install/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerInstallDatabase extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/install/database_backup.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerInstallDatabase_backup extends JControllerBase
public function execute()
{
// Get the application.
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/install/email.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct()
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries. - @TODO - Restore this check
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/install/languages.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct()
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/install/sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerInstallSample extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/preinstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerPreinstall extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/removefolder.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerRemovefolder extends JControllerBase
public function execute()
{
// Get the application.
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/setdefaultlanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct()
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/setlanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerSetlanguage extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/site.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerSite extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/summary.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerSummary extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down
2 changes: 1 addition & 1 deletion installation/controller/verifyftpsettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InstallationControllerVerifyftpsettings extends JControllerBase
public function execute()
{
// Get the application
/* @var InstallationApplicationWeb $app */
/** @var InstallationApplicationWeb $app */
$app = $this->getApplication();

// Check for request forgeries.
Expand Down

0 comments on commit 85d7efd

Please sign in to comment.