Skip to content

Commit

Permalink
Fix doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Babker authored and wilsonge committed Apr 14, 2019
1 parent 9e467dd commit f97265c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions components/com_privacy/Controller/RequestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
use Joomla\CMS\MVC\Controller\BaseController;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Uri\Uri;
use Joomla\Component\Privacy\Site\Model\ConfirmModel;
use Joomla\Component\Privacy\Site\Model\RequestModel;

/**
* Request action controller class.
Expand All @@ -36,7 +38,7 @@ public function confirm()
// Check the request token.
$this->checkToken('post');

/** @var PrivacyModelConfirm $model */
/** @var ConfirmModel $model */
$model = $this->getModel('Confirm', 'Site');
$data = $this->input->post->get('jform', [], 'array');

Expand Down Expand Up @@ -90,7 +92,7 @@ public function submit()
// Check the request token.
$this->checkToken('post');

/** @var PrivacyModelRequest $model */
/** @var RequestModel $model */
$model = $this->getModel('Request', 'Site');
$data = $this->input->post->get('jform', [], 'array');

Expand Down Expand Up @@ -144,7 +146,7 @@ public function remind()
// Check the request token.
$this->checkToken('post');

/** @var PrivacyModelConfirm $model */
/** @var ConfirmModel $model */
$model = $this->getModel('Remind', 'Site');
$data = $this->input->post->get('jform', [], 'array');

Expand Down

0 comments on commit f97265c

Please sign in to comment.