Completed
Push — master ( 8fd614...3478cb )
by Michal
38:15 queued 05:38
created
src/Controller/Component/GithubApiComponent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
  * or not to return a status.
34 34
  *
35 35
  * @param String  $path the api path to preform the request to
36
- * @param Array   $data the data to send in the request. This works with both GET
36
+ * @param string   $data the data to send in the request. This works with both GET
37 37
  *                      and Post requests
38 38
  * @param String  $method the method type of the request
39 39
  * @param Boolean $returnStatus whether to return the status code with the
Please login to merge, or discard this patch.
src/Controller/GithubController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
      * @param Object $response the response returned by Github api
191 191
      * @param Integer $status status returned by Github API
192 192
      *
193
-     * @return error string
193
+     * @return string string
194 194
      */
195 195
 	protected function _getErrors($response, $status) {
196 196
 		$errorString = "There were some problems with the issue submission."
Please login to merge, or discard this patch.
src/Controller/PagesController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
  * Displays a view
53 53
  *
54 54
  * @param mixed What page to display
55
- * @return void
55
+ * @return \Cake\Network\Response|null
56 56
  * @throws NotFoundException When the view file could not be found
57 57
  *	or MissingViewException in debug mode.
58 58
  */
Please login to merge, or discard this patch.
src/Model/Table/ReportsTable.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 /**
94 94
  * Retrieves the incident records that are related to the current report
95 95
  *
96
- * @return Array the list of incidents ordered by creation date desc
96
+ * @return \Cake\ORM\Query the list of incidents ordered by creation date desc
97 97
  */
98 98
 	public function getIncidents() {
99 99
 		$incidents = TableRegistry::get('Incidents')->find('all', array(
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 /**
108 108
  * Retrieves the report records that are related to the current report
109 109
  *
110
- * @return Array the list of related reports
110
+ * @return \Cake\ORM\Query the list of related reports
111 111
  */
112 112
 	public function getRelatedReports() {
113 113
 		return $this->find("all", array(
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
  * Retrieves the incident records that are related to the current report that
120 120
  * also have a description
121 121
  *
122
- * @return Array the list of incidents ordered by description lenght desc
122
+ * @return \Cake\ORM\Query the list of incidents ordered by description lenght desc
123 123
  */
124 124
 	public function getIncidentsWithDescription() {
125 125
 		return TableRegistry::get('Incidents')->find('all', array(
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
  * Retrieves the incident records that are related to the current report that
138 138
  * that have a different stacktrace
139 139
  *
140
- * @return Array the list of incidents
140
+ * @return \Cake\ORM\Query the list of incidents
141 141
  */
142 142
 	public function getIncidentsWithDifferentStacktrace() {
143 143
 		return TableRegistry::get('Incidents')->find('all', array(
Please login to merge, or discard this patch.
vendor/aura/intl/src/Aura/Intl/TranslatorLocator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      * 
133 133
      * An object of type PackagesInterface
134 134
      * 
135
-     * @return PackagesInterface
135
+     * @return PackageLocator
136 136
      * 
137 137
      */
138 138
     public function getPackages()
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      * 
145 145
      * object of type FormatterLocator
146 146
      * 
147
-     * @return FormatterLocator
147
+     * @return FormatterInterface
148 148
      * 
149 149
      */
150 150
     public function getFormatters()
Please login to merge, or discard this patch.
vendor/cakephp/bake/src/Shell/Task/ModelTask.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      * Execution method always used for tasks
79 79
      *
80 80
      * @param string|null $name The name of the table to bake.
81
-     * @return void
81
+     * @return boolean|null
82 82
      */
83 83
     public function main($name = null)
84 84
     {
Please login to merge, or discard this patch.
vendor/cakephp/bake/src/Shell/Task/PluginTask.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * Execution method always used for tasks
59 59
      *
60 60
      * @param string|null $name The name of the plugin to bake.
61
-     * @return void
61
+     * @return false|null
62 62
      */
63 63
     public function main($name = null)
64 64
     {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      * Also update the autoloader and the root composer.json file if it can be found
86 86
      *
87 87
      * @param string $plugin Name of the plugin in CamelCased format
88
-     * @return bool
88
+     * @return null|boolean
89 89
      */
90 90
     public function bake($plugin)
91 91
     {
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
      * Search the $PATH for composer.
361 361
      *
362 362
      * @param array $path The paths to search.
363
-     * @return string|bool
363
+     * @return string|false
364 364
      */
365 365
     protected function _searchPath($path)
366 366
     {
Please login to merge, or discard this patch.
vendor/cakephp/bake/src/Shell/Task/TestTask.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -516,7 +516,7 @@
 block discarded – undo
516 516
      *
517 517
      * @param string $type The Type of object you are generating tests for eg. controller
518 518
      * @param string $fullClassName The Classname of the class the test is being generated for.
519
-     * @return array An array containing used classes
519
+     * @return string[] An array containing used classes
520 520
      */
521 521
     public function generateUses($type, $fullClassName)
522 522
     {
Please login to merge, or discard this patch.
vendor/cakephp/bake/src/View/BakeView.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      *
106 106
      * @param string|null $view Name of view file to use, or a template string to render
107 107
      * @param string|null $layout Layout to use. Not used, for consistency with other views only
108
-     * @return string|null Rendered content.
108
+     * @return string Rendered content.
109 109
      * @throws \Cake\Core\Exception\Exception If there is an error in the view.
110 110
      */
111 111
     public function render($view = null, $layout = null)
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      * Use the Bake prefix for bake related view events
134 134
      *
135 135
      * @param string $name Name of the event.
136
-     * @param array|null $data Any value you wish to be transported with this event to
136
+     * @param string[] $data Any value you wish to be transported with this event to
137 137
      * it can be read by listeners.
138 138
      *
139 139
      * @param object|null $subject The object that this event applies to
Please login to merge, or discard this patch.