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

src/Route4Me/Order.php 2 locations

@@ 190-197 (lines=8) @@
187
			return $response;
188
		}
189
        
190
        public static function validateLatitude($lat)
191
        {
192
            if (!is_numeric($lat)) return false;
193
            
194
            if ($lat>90 || $lat<-90) return false;
195
            
196
            return true;
197
        }
198
        
199
        public static function validateLongitude($lng)
200
        {
@@ 199-206 (lines=8) @@
196
            return true;
197
        }
198
        
199
        public static function validateLongitude($lng)
200
        {
201
            if (!is_numeric($lng)) return false;
202
            
203
            if ($lng>180 || $lng<-180) return false;
204
            
205
            return true;
206
        }
207
        
208
        public function addOrdersFromCsvFile($csvFileHandle, $ordersFieldsMapping)
209
        {