Completed
Push — master ( 6554a3...90d2ed )
by Ricardo
06:26
created
src/Events/FileUploadEvent.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -10,6 +10,7 @@
 block discarded – undo
10 10
     /**
11 11
      * Create a new event instance.
12 12
      *
13
+     * @param string $project_key
13 14
      * @return void
14 15
      */
15 16
     public function __construct($project_key, $issue_id, $field_key, $file_id, $user)
Please login to merge, or discard this patch.
src/Http/Api/AccessLogsController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,6 @@
 block discarded – undo
114 114
     /**
115 115
      * export xls for access logs
116 116
      *
117
-     * @param  array $issues
118 117
      * @return void
119 118
      */
120 119
     public function export($logs)
Please login to merge, or discard this patch.
src/Http/Api/EventsController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,6 @@
 block discarded – undo
141 141
      * set notifications
142 142
      *
143 143
      * @param  string $project_key
144
-     * @param  string $event_id
145 144
      * @return array
146 145
      */
147 146
     public function setNotify(Request $request, $project_key, $id)
Please login to merge, or discard this patch.
src/Events/WikiEvent.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Create a new event instance.
19 19
      *
20
+     * @param string $project_key
20 21
      * @return void
21 22
      */
22 23
     public function __construct($project_key, $user, array $param=[])
Please login to merge, or discard this patch.
src/Bundle/CoreBundle/Test/Client.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     /**
104 104
      * Defines the repository pool to use for the client.
105 105
      *
106
-     * @param Fabrica\Bundle\CoreBundle\Git\RepositoryPool $repositoryPool The
106
+     * @param RepositoryPool $repositoryPool The
107 107
      *                                                                     repository pool to set
108 108
      */
109 109
     public function setRepositoryPool(RepositoryPool $repositoryPool)
Please login to merge, or discard this patch.
src/Http/Api/CalendarController.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * fetch the year dates .
55 55
      *
56
-     * @param  number $year
56
+     * @param  integer $year
57 57
      * @return array
58 58
      */
59 59
     public function getYearDates($year)
@@ -87,9 +87,9 @@  discard block
 block discarded – undo
87 87
     /**
88 88
      * convert the solar to lunar.
89 89
      *
90
-     * @param  number $year
91
-     * @param  number $month
92
-     * @param  number $day
90
+     * @param  string $year
91
+     * @param  integer $month
92
+     * @param  integer $day
93 93
      * @return array
94 94
      */
95 95
     private function convert2lunar($year, $month, $day)
@@ -199,7 +199,6 @@  discard block
 block discarded – undo
199 199
     /**
200 200
      * sync the year singular calendars.
201 201
      *
202
-     * @param   string $year
203 202
      * @@return array
204 203
      */
205 204
     public function sync(Request $request)
Please login to merge, or discard this patch.
src/Http/Api/Controller.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -50,6 +50,7 @@  discard block
 block discarded – undo
50 50
      * string $project_key
51 51
      * string $permission
52 52
      *
53
+     * @param string $permission
53 54
      * @return bool
54 55
      */
55 56
     public function isPermissionAllowed($project_key, $permission, $user_id='')
@@ -73,6 +74,7 @@  discard block
 block discarded – undo
73 74
     /**
74 75
      * check if the field is used by issue.
75 76
      *
77
+     * @param string $field_key
76 78
      * @return true 
77 79
      */
78 80
     public function isFieldUsedByIssue($project_key, $field_key, $field, $ext_info='')
Please login to merge, or discard this patch.
src/Http/Api/DocumentController.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      * @param  array  $dt
145 145
      * @param  string $parent_id
146 146
      * @param  array  $sub_dirs
147
-     * @return void
147
+     * @return boolean
148 148
      */
149 149
     public function addChildren2Tree(&$dt, $parent_id, $sub_dirs)
150 150
     {
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
      *
357 357
      * @param  string $project_key
358 358
      * @param  string $directory
359
-     * @return array
359
+     * @return string[]
360 360
      */
361 361
     public function getParentTree($project_key, $directory)
362 362
     {
@@ -742,6 +742,7 @@  discard block
 block discarded – undo
742 742
      *
743 743
      * @param  String $name
744 744
      * @param  String $directory
745
+     * @param string $project_key
745 746
      * @return \Illuminate\Http\Response
746 747
      */
747 748
     public function downloadFolder($project_key, $name, $directory)
Please login to merge, or discard this patch.
src/Http/Api/EpicController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,6 @@
 block discarded – undo
236 236
     /**
237 237
      * update the issues epic
238 238
      *
239
-     * @param  array  $issues
240 239
      * @param  string $source
241 240
      * @param  string $dest
242 241
      * @return \Illuminate\Http\Response
Please login to merge, or discard this patch.