Completed
Branch master (8ed11c)
by Phecho
07:05
created
app/Api/Authorization/ActionAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class ActionAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     */
19 23
     public function check($class, $method, $action_id)
20 24
     {
21 25
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/CategoryAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class CategoryAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     */
19 23
     public function check($class, $method, $category_id)
20 24
     {
21 25
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/ColumnAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class ColumnAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     */
19 23
     public function check($class, $method, $column_id)
20 24
     {
21 25
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/CommentAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class CommentAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     */
19 23
     public function check($class, $method, $comment_id)
20 24
     {
21 25
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/ProjectAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -19,6 +19,10 @@
 block discarded – undo
19 19
  */
20 20
 class ProjectAuthorization extends Base
21 21
 {
22
+    /**
23
+     * @param string $class
24
+     * @param string $method
25
+     */
22 26
     public function check($class, $method, $project_id)
23 27
     {
24 28
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/SubtaskAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class SubtaskAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     */
19 23
     public function check($class, $method, $subtask_id)
20 24
     {
21 25
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/TaskAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class TaskAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     */
19 23
     public function check($class, $method, $category_id)
20 24
     {
21 25
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/TaskFileAuthorization.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class TaskFileAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     */
19 23
     public function check($class, $method, $file_id)
20 24
     {
21 25
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.
app/Api/Authorization/TaskLinkAuthorization.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -16,6 +16,11 @@
 block discarded – undo
16 16
  */
17 17
 class TaskLinkAuthorization extends ProjectAuthorization
18 18
 {
19
+    /**
20
+     * @param string $class
21
+     * @param string $method
22
+     * @param integer $task_link_id
23
+     */
19 24
     public function check($class, $method, $task_link_id)
20 25
     {
21 26
         if ($this->userSession->isLogged()) {
Please login to merge, or discard this patch.