Completed
Push — develop-3.0 ( 4fe777...24fc5d )
by Mohamed
09:15
created
app/Http/Controllers/Administration/TagsController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * 
107 107
      * @param Tag $tag
108 108
      *
109
-     * @return mixed
109
+     * @return \Illuminate\Http\RedirectResponse
110 110
      */
111 111
     public function getDelete(Tag $tag)
112 112
     {
Please login to merge, or discard this patch.
app/Model/Tag.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @param string $url
98 98
      *
99
-     * @return mixed
99
+     * @return string
100 100
      */
101 101
     public function to($url)
102 102
     {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * Returns an array of core groups.
144 144
      *
145
-     * @return array
145
+     * @return string[]
146 146
      */
147 147
     public static function getCoreGroups()
148 148
     {
Please login to merge, or discard this patch.
app/Model/Traits/Project/Issue/QueueTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Tinyissue\Form\UserSetting as Form;
15 15
 use Tinyissue\Http\Requests\FormRequest;
16 16
 use Tinyissue\Model\Project;
17
-use Tinyissue\Model\User;
18 17
 
19 18
 /**
20 19
  * UserController is the controller class for managing request related to logged in user account
Please login to merge, or discard this patch.
app/Services/SettingsManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     /**
99 99
      * Returns first status tag id.
100 100
      *
101
-     * @return int
101
+     * @return string
102 102
      */
103 103
     public function getFirstStatusTagId()
104 104
     {
Please login to merge, or discard this patch.
app/Providers/BladeServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     /**
112 112
      * Return arguments and name from blade expression.
113 113
      *
114
-     * @param $expression
114
+     * @param string $expression
115 115
      *
116 116
      * @return array
117 117
      */
Please login to merge, or discard this patch.
app/Extensions/Model/CountAttributeTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     /**
44 44
      * Eager load relations on the model.
45 45
      *
46
-     * @param array|string $relations
46
+     * @param string $relations
47 47
      *
48 48
      * @return $this
49 49
      */
Please login to merge, or discard this patch.
app/Http/Controllers/ProjectsController.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
         parent::__construct($auth);
38 38
     }
39 39
 
40
+    /**
41
+     * @param integer $status
42
+     */
40 43
     protected function getIndexViewDataForLoggedUser($status = Project::STATUS_OPEN)
41 44
     {
42 45
         $userRepository     = $this->getLoggedUserRepository();
@@ -55,6 +58,9 @@  discard block
 block discarded – undo
55 58
         ];
56 59
     }
57 60
 
61
+    /**
62
+     * @param integer $status
63
+     */
58 64
     protected function getIndexViewDataForPublicProjects($status = Project::STATUS_OPEN)
59 65
     {
60 66
         $projectRepository  = $this->app->make(ProjectRepository::class);
Please login to merge, or discard this patch.
app/Model/Project/Issue.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 use Tinyissue\Extensions\Auth\LoggedUser;
19 19
 use Tinyissue\Extensions\Model\CountAttributeTrait;
20 20
 use Tinyissue\Model;
21
-use Tinyissue\Model\Traits\Project\Issue\QueueTrait;
22 21
 
23 22
 /**
24 23
  * Issue is model class for project issues.
Please login to merge, or discard this patch.
app/Model/Project/Note/SendMessages.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Illuminate\Support\Collection;
15 15
 use Tinyissue\Model\Message\Queue;
16 16
 use Tinyissue\Model\Project;
17
-use Tinyissue\Model\Project\Issue;
18 17
 use Tinyissue\Services\SendMessagesAbstract;
19 18
 
20 19
 /**
Please login to merge, or discard this patch.