diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-04 21:11:12 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-04 21:11:12 -0500 |
commit | a7f3e3bec50762f2083f70672a0ba3db533fc8bb (patch) | |
tree | c8e9961cb610042acf32e88096abc5fcb3eac4dd /app/Controller/App.php | |
parent | 38082096909424c23032224365c90aa5189eb6f0 (diff) |
PHPdoc cleanup
Diffstat (limited to 'app/Controller/App.php')
-rw-r--r-- | app/Controller/App.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Controller/App.php b/app/Controller/App.php index 1ce74506..b816764d 100644 --- a/app/Controller/App.php +++ b/app/Controller/App.php @@ -19,6 +19,7 @@ class App extends Base * @param integer $user_id * @param string $action * @param integer $max + * @return \Kanboard\Core\Paginator */ private function getProjectPaginator($user_id, $action, $max) { @@ -37,6 +38,7 @@ class App extends Base * @param integer $user_id * @param string $action * @param integer $max + * @return \Kanboard\Core\Paginator */ private function getTaskPaginator($user_id, $action, $max) { @@ -55,6 +57,7 @@ class App extends Base * @param integer $user_id * @param string $action * @param integer $max + * @return \Kanboard\Core\Paginator */ private function getSubtaskPaginator($user_id, $action, $max) { |