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.

Code Duplication    Length = 7-8 lines in 2 locations

Sistema/librerias/rb.php 2 locations

@@ 9265-9272 (lines=8) @@
9262
			}
9263
			$modelName = $prefix . $modelName;
9264
9265
			if ( !class_exists( $modelName ) ) {
9266
				//second try
9267
				$modelName = $prefix . ucfirst( $model );
9268
				
9269
				if ( !class_exists( $modelName ) ) {
9270
					return NULL;
9271
				}
9272
			}
9273
9274
		} else {
9275
@@ 9274-9280 (lines=7) @@
9271
				}
9272
			}
9273
9274
		} else {
9275
9276
			$modelName = $prefix . ucfirst( $model );
9277
			if ( !class_exists( $modelName ) ) {
9278
				return NULL;
9279
			}
9280
		}
9281
		$obj = self::factory( $modelName );
9282
		$obj->loadBean( $bean );
9283