Completed
Push — master ( 305b61...14ad8e )
by Renato
9s
created
app/Classes/Phpcs.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@  discard block
 block discarded – undo
22 22
         $this->convertToLines($result);
23 23
     }
24 24
 
25
+    /**
26
+     * @param string $result
27
+     */
25 28
     private function addSuggestionFix($result)
26 29
     {
27 30
         $arr = explode('<br />', nl2br($result));
@@ -47,6 +50,9 @@  discard block
 block discarded – undo
47 50
         }
48 51
     }
49 52
 
53
+    /**
54
+     * @param string $result
55
+     */
50 56
     private function convertToLines($result)
51 57
     {
52 58
         $arr = explode('<br />', nl2br($result));
Please login to merge, or discard this patch.
app/Http/Controllers/UserController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,6 @@
 block discarded – undo
70 70
     /**
71 71
      * Display the specified resource.
72 72
      *
73
-     * @param int $id
74 73
      *
75 74
      * @return \Illuminate\Http\Response
76 75
      */
Please login to merge, or discard this patch.
app/Models/Status.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@
 block discarded – undo
74 74
         return Carbon::createFromFormat('Y-m-d H:i:s', $this->attributes['created_at'])->diffForHumans();
75 75
     }
76 76
 
77
+    /**
78
+     * @param string $alias
79
+     */
77 80
     public function track($alias, $model)
78 81
     {
79 82
         if (!isset($model->config_status_id)) {
Please login to merge, or discard this patch.
app/Http/Controllers/ProductBacklogController.php 1 patch
Doc Comments   +2 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @param \Illuminate\Http\Request $request
54 54
      *
55
-     * @return \Illuminate\Http\Response
55
+     * @return \Illuminate\Http\RedirectResponse
56 56
      */
57 57
     public function store(Request $request)
58 58
     {
@@ -65,7 +65,6 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * Display the specified resource.
67 67
      *
68
-     * @param int $id
69 68
      *
70 69
      * @return \Illuminate\Http\Response
71 70
      */
@@ -82,7 +81,6 @@  discard block
 block discarded – undo
82 81
     /**
83 82
      * Show the form for editing the specified resource.
84 83
      *
85
-     * @param int $id
86 84
      *
87 85
      * @return \Illuminate\Http\Response
88 86
      */
@@ -105,9 +103,8 @@  discard block
 block discarded – undo
105 103
      * Update the specified resource in storage.
106 104
      *
107 105
      * @param \Illuminate\Http\Request $request
108
-     * @param int                      $id
109 106
      *
110
-     * @return \Illuminate\Http\Response
107
+     * @return \Illuminate\Http\RedirectResponse
111 108
      */
112 109
     public function update(Request $request, $slug)
113 110
     {
Please login to merge, or discard this patch.
app/Http/Controllers/UserIssueController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,6 @@
 block discarded – undo
87 87
      * Update the specified resource in storage.
88 88
      *
89 89
      * @param \Illuminate\Http\Request $request
90
-     * @param int                      $id
91 90
      *
92 91
      * @return \Illuminate\Http\Response
93 92
      */
Please login to merge, or discard this patch.
app/Http/Controllers/ConfigStatusController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      *
13 13
      * @param \Illuminate\Http\Request $request
14 14
      *
15
-     * @return \Illuminate\Http\Response
15
+     * @return \Illuminate\Http\JsonResponse
16 16
      */
17 17
     public function updatePosition(Request $request)
18 18
     {
Please login to merge, or discard this patch.
app/Http/Controllers/SprintController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * Store a newly created resource in storage.
65 65
      *
66
-     * @param GitScrum\Http\Requests\SprintRequest $request
66
+     * @param SprintRequest $request
67 67
      *
68
-     * @return \Illuminate\Http\Response
68
+     * @return \Illuminate\Http\RedirectResponse
69 69
      */
70 70
     public function store(SprintRequest $request)
71 71
     {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      * @param SprintRequest|Request $request
132 132
      * @param $slug
133 133
      *
134
-     * @return \Illuminate\Http\Response
134
+     * @return \Illuminate\Http\RedirectResponse
135 135
      *
136 136
      * @internal param int $id
137 137
      */
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      *
150 150
      * @param Request $request
151 151
      *
152
-     * @return \Illuminate\Http\Response
152
+     * @return \Illuminate\Http\RedirectResponse
153 153
      *
154 154
      * @internal param int $id
155 155
      */
Please login to merge, or discard this patch.
app/Classes/Helper.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -67,6 +67,10 @@
 block discarded – undo
67 67
         return $arr;
68 68
     }
69 69
 
70
+    /**
71
+     * @param string $url
72
+     * @param string $customRequest
73
+     */
70 74
     public static function request($url, $auth = true, $customRequest = null, $postFields = null)
71 75
     {
72 76
         $user = Auth::user();
Please login to merge, or discard this patch.
app/Contracts/ProviderInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -8,16 +8,28 @@
 block discarded – undo
8 8
 
9 9
     public function templateRepository($repo, $slug = false);
10 10
 
11
+    /**
12
+     * @return \Illuminate\Support\Collection
13
+     */
11 14
     public function readRepositories();
12 15
 
13 16
     public function createOrUpdateRepository($owner, $obj, $oldTitle = null);
14 17
 
15 18
     public function organization($login);
16 19
 
20
+    /**
21
+     * @return void
22
+     */
17 23
     public function readCollaborators($owner, $repo);
18 24
 
25
+    /**
26
+     * @return void
27
+     */
19 28
     public function createBranches($owner, $product_backlog_id, $repo);
20 29
 
30
+    /**
31
+     * @return void
32
+     */
21 33
     public function readIssues();
22 34
 
23 35
     public function createOrUpdateIssue($obj);
Please login to merge, or discard this patch.