GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( eba62c...1be0d2 )
by Lonnie
08:09
created
application/helpers/markdown_helper.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -1122,6 +1122,10 @@  discard block
 block discarded – undo
1122 1122
 
1123 1123
     var $list_level = 0;
1124 1124
 
1125
+    /**
1126
+     * @param string $list_str
1127
+     * @param string $marker_any_re
1128
+     */
1125 1129
     function processListItems($list_str, $marker_any_re)
1126 1130
     {
1127 1131
         #
@@ -1234,6 +1238,9 @@  discard block
 block discarded – undo
1234 1238
         return "\n\n" . $this->hashBlock($codeblock) . "\n\n";
1235 1239
     }
1236 1240
 
1241
+    /**
1242
+     * @param string $code
1243
+     */
1237 1244
     function makeCodeSpan($code)
1238 1245
     {
1239 1246
         #
@@ -1751,6 +1758,9 @@  discard block
 block discarded – undo
1751 1758
     # hanlde UTF-8 if the default function does not exist.
1752 1759
     var $utf8_strlen = 'mb_strlen';
1753 1760
 
1761
+    /**
1762
+     * @param string $text
1763
+     */
1754 1764
     function detab($text)
1755 1765
     {
1756 1766
         #
@@ -2340,6 +2350,11 @@  discard block
 block discarded – undo
2340 2350
         return array($parsed, $text);
2341 2351
     }
2342 2352
 
2353
+    /**
2354
+     * @param string $text
2355
+     * @param string $hash_method
2356
+     * @param boolean $md_attr
2357
+     */
2343 2358
     function _hashHTMLBlocks_inHTML($text, $hash_method, $md_attr)
2344 2359
     {
2345 2360
         #
@@ -3078,6 +3093,9 @@  discard block
 block discarded – undo
3078 3093
         return $this->hashBlock($result) . "\n\n";
3079 3094
     }
3080 3095
 
3096
+    /**
3097
+     * @return string
3098
+     */
3081 3099
     function processDefListItems($list_str)
3082 3100
     {
3083 3101
         #
Please login to merge, or discard this patch.
application/libraries/Migration.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
      *
322 322
      * @param string $type  Any key from _migration_paths, or {module_name}
323 323
      *
324
-     * @return bool|string
324
+     * @return false|string
325 325
      */
326 326
     public function get_latest($type='app')
327 327
     {
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
 	/**
466 466
 	 * Based on the 'type', determines the correct migration path.
467 467
 	 *
468
-	 * @param $type
468
+	 * @param string $type
469 469
 	 * @param bool $create
470 470
 	 *
471 471
 	 * @return null|string
Please login to merge, or discard this patch.
application/models/User_model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
      * @param $user_id
293 293
      * @param $key
294 294
      *
295
-     * @return bool
295
+     * @return false|null
296 296
      */
297 297
     public function removeMetaFromUser($user_id, $key)
298 298
     {
Please login to merge, or discard this patch.
application/third_party/HMVC/Loader.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      * @param	string	the name of the class
108 108
      * @param	mixed	the optional parameters
109 109
      * @param	string	an optional object name
110
-     * @return	void
110
+     * @return	null|HMVC_Loader
111 111
      */
112 112
     public function library($library = '', $params = NULL, $object_name = NULL) {
113 113
         if (is_array($library)) {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      * @param	string	the name of the class
148 148
      * @param	string	name for the model
149 149
      * @param	bool	database connection
150
-     * @return	void
150
+     * @return	null|HMVC_Loader
151 151
      */
152 152
     public function model($model, $name = '', $db_conn = FALSE) {
153 153
         if (is_array($model)) {
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
      * @param	string
233 233
      * @param	bool
234 234
      * @param 	bool
235
-     * @return	void
235
+     * @return	boolean|null
236 236
      */
237 237
     public function config($file = '', $use_sections = FALSE, $fail_gracefully = FALSE) {
238 238
         // Detect module
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
      * This function loads the specified helper file.
264 264
      *
265 265
      * @param	mixed
266
-     * @return	void
266
+     * @return	null|HMVC_Loader
267 267
      */
268 268
     public function helper($helper = array()) {
269 269
         if (is_array($helper)) {
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
      *
301 301
      * @param	array
302 302
      * @param	string
303
-     * @return	void
303
+     * @return	null|HMVC_Loader
304 304
      */
305 305
     public function language($file = array(), $lang = '') {
306 306
         if (is_array($file)) {
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
      * Searches a given module name. Returns the path if found, FALSE otherwise
518 518
      *
519 519
      * @param string $module
520
-     * @return string|boolean
520
+     * @return string|false
521 521
      */
522 522
     private function find_module($module) {
523 523
         $config = & $this->_ci_get_component('config');
Please login to merge, or discard this patch.
build/lib/BaseBuilder.php 1 patch
Doc Comments   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
 	 * Copies the entire contents of a single folder
22 22
 	 * into a source folder, recursively.
23 23
 	 *
24
-	 * @param $source
25
-	 * @param $destination
24
+	 * @param string $source
25
+	 * @param string $destination
26 26
 	 */
27 27
 	public function copyFolder($source, $destination)
28 28
 	{
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
 	 * Deletes all files and folders, recursively, within $path,
72 72
 	 * except for any files listed in the $leave_files array.
73 73
 	 *
74
-	 * @param $path
75
-	 * @param array $leave_files
74
+	 * @param string $path
75
+	 * @param string[] $leave_files
76 76
 	 */
77 77
 	public function cleanFolder($path, $leave_files=[])
78 78
 	{
@@ -97,6 +97,10 @@  discard block
 block discarded – undo
97 97
 
98 98
 	//--------------------------------------------------------------------
99 99
 
100
+	/**
101
+	 * @param string $source
102
+	 * @param string $destination
103
+	 */
100 104
 	public function compressFolder($source, $destination, $include_dir=false)
101 105
 	{
102 106
 		if (! extension_loaded('zip') ) {
Please login to merge, or discard this patch.
myth/_generators/Api/ApiGenerator.php 1 patch
Doc Comments   +17 added lines, -10 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	 * Quickly creates boilerplate code for a new API resource.
104 104
 	 *
105 105
 	 * @param $segments
106
-	 * @param $quiet
106
+	 * @param boolean $quiet
107 107
 	 */
108 108
 	private function scaffold( $segments, $quiet )
109 109
 	{
@@ -220,6 +220,9 @@  discard block
 block discarded – undo
220 220
 
221 221
 	//--------------------------------------------------------------------
222 222
 
223
+	/**
224
+	 * @param string $name
225
+	 */
223 226
 	private function detectModel($name)
224 227
 	{
225 228
 		$model_name = ucfirst($name) .'_model.php';
@@ -242,8 +245,8 @@  discard block
 block discarded – undo
242 245
     /**
243 246
      * Creates the new APIController - based resource with basic CRUD.
244 247
      *
245
-     * @param $single
246
-     * @param $plural
248
+     * @param string $single
249
+     * @param string $plural
247 250
      * @param $version
248 251
      *
249 252
      * @return $this
@@ -271,8 +274,8 @@  discard block
 block discarded – undo
271 274
     /**
272 275
      * Creates the language file to accompany the controller.
273 276
      *
274
-     * @param $single
275
-     * @param $plural
277
+     * @param string $single
278
+     * @param string $plural
276 279
      * @param $version
277 280
      *
278 281
      * @return $this
@@ -297,8 +300,8 @@  discard block
 block discarded – undo
297 300
      * Creates the API Blueprint file for that resource in
298 301
      * APPPATH/docs/api
299 302
      *
300
-     * @param $single
301
-     * @param $plural
303
+     * @param string $single
304
+     * @param string $plural
302 305
      * @param $version
303 306
      * @param $model
304 307
      *
@@ -349,7 +352,7 @@  discard block
 block discarded – undo
349 352
      * Modifies the _toc.ini file (or creates) for the specified Blueprint docs.
350 353
      *
351 354
      * @param $plural
352
-     * @param $version
355
+     * @param string $version
353 356
      *
354 357
      * @return $this|bool
355 358
      */
@@ -385,7 +388,7 @@  discard block
 block discarded – undo
385 388
      * Creates a generic representation of the object from the database
386 389
      * table.
387 390
      *
388
-     * @param $model
391
+     * @param string $model
389 392
      *
390 393
      * @return string
391 394
      */
@@ -537,6 +540,10 @@  discard block
 block discarded – undo
537 540
 	//--------------------------------------------------------------------
538 541
 
539 542
 
543
+	/**
544
+	 * @param string $tpl
545
+	 * @param string $name
546
+	 */
540 547
 	private function makeMigration( $tpl, $name )
541 548
 	{
542 549
 		// Create the migration
@@ -561,7 +568,7 @@  discard block
 block discarded – undo
561 568
 	/**
562 569
 	 * Modifies the config/api.php file and sets the Auth type
563 570
 	 *
564
-	 * @param $type
571
+	 * @param string $type
565 572
 	 */
566 573
 	private function setAuthType( $type )
567 574
 	{
Please login to merge, or discard this patch.
myth/_generators/Controller/ControllerGenerator.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -97,6 +97,9 @@  discard block
 block discarded – undo
97 97
 
98 98
 	//--------------------------------------------------------------------
99 99
 
100
+	/**
101
+	 * @param string $name
102
+	 */
100 103
 	protected function quietSetOptions( $name )
101 104
 	{
102 105
 		$options = CLI::getOptions();
@@ -120,6 +123,9 @@  discard block
 block discarded – undo
120 123
 
121 124
 	//--------------------------------------------------------------------
122 125
 
126
+	/**
127
+	 * @param string $name
128
+	 */
123 129
 	protected function collectOptions( $name )
124 130
 	{
125 131
 		$options = CLI::getOptions();
@@ -159,6 +165,7 @@  discard block
 block discarded – undo
159 165
 
160 166
 	/**
161 167
 	 * Generates the standard views for our CRUD methods.
168
+	 * @param string $name
162 169
 	 */
163 170
 	protected function createViews( $name )
164 171
 	{
Please login to merge, or discard this patch.
myth/_generators/Migration/MigrationGenerator.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 	 *  'create_user_table'         action = 'create', table = 'user'
160 160
 	 *  'add_name_to_user_table     action = 'add', table = 'user'
161 161
 	 *
162
-	 * @param $name
162
+	 * @param string $name
163 163
 	 */
164 164
 	public function detectAction($name)
165 165
 	{
@@ -199,6 +199,9 @@  discard block
 block discarded – undo
199 199
 
200 200
 	//--------------------------------------------------------------------
201 201
 
202
+	/**
203
+	 * @param string $name
204
+	 */
202 205
 	public function collectOptions($name, $quiet=false)
203 206
 	{
204 207
 		$options = CLI::getOptions();
@@ -308,7 +311,7 @@  discard block
 block discarded – undo
308 311
 	 * Reads the fields from an existing table and fills out our
309 312
 	 * $fields array and $primary key information.
310 313
 	 *
311
-	 * @param $table
314
+	 * @param string $table
312 315
 	 */
313 316
 	protected function readTable($table)
314 317
 	{
Please login to merge, or discard this patch.
myth/_generators/Model/ModelGenerator.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -107,6 +107,10 @@  discard block
 block discarded – undo
107 107
 	/*
108 108
 	 * Customizes our settings
109 109
 	 */
110
+
111
+	/**
112
+	 * @param string $model_name
113
+	 */
110 114
 	protected function collectOptions( $model_name, $options=[] )
111 115
 	{
112 116
 		$this->load->helper( 'inflector' );
@@ -180,6 +184,9 @@  discard block
 block discarded – undo
180 184
 
181 185
 	//--------------------------------------------------------------------
182 186
 
187
+	/**
188
+	 * @param string $model_name
189
+	 */
183 190
 	protected function quietSetOptions( $model_name, $options=[] )
184 191
 	{
185 192
 		$this->load->helper( 'inflector' );
Please login to merge, or discard this patch.