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 = 2-2 lines in 2 locations

protected/extensions/nested-set-behavior/tests/unit/NestedSetBehaviorTest.php 2 locations

@@ 893-894 (lines=2) @@
890
			else
891
				$count[$node->root]=1;
892
893
			if(!isset($min[$node->root]) || $min[$node->root]>$node->lft)
894
				$min[$node->root]=$node->lft;
895
896
			if(!isset($max[$node->root]) || $max[$node->root]<$node->rgt)
897
				$max[$node->root]=$node->rgt;
@@ 896-897 (lines=2) @@
893
			if(!isset($min[$node->root]) || $min[$node->root]>$node->lft)
894
				$min[$node->root]=$node->lft;
895
896
			if(!isset($max[$node->root]) || $max[$node->root]<$node->rgt)
897
				$max[$node->root]=$node->rgt;
898
		}
899
900
		foreach($count as $root=>$c)