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

src/Route4Me/AvoidanceZone.php 1 location

@@ 86-97 (lines=12) @@
83
			return $abcontacts;
84
		}
85
		
86
		public function deleteAvoidanceZone($territory_id)
87
	    {
88
	        $result = Route4Me::makeRequst(array(
89
	            'url'    => self::$apiUrl,
90
	            'method' => 'DELETEARRAY',
91
	            'query'  => array(
92
	                'territory_id'     => $territory_id
93
	            )
94
	        ));
95
	
96
	        return $result;
97
	    }
98
		
99
		public function updateAvoidanceZone($params)
100
	    {

src/Route4Me/Territory.php 1 location

@@ 88-99 (lines=12) @@
85
			return $response;
86
		}
87
		
88
		public function deleteTerritory($territory_id)
89
	    {
90
	        $result = Route4Me::makeRequst(array(
91
	            'url'    => self::$apiUrl,
92
	            'method' => 'DELETEARRAY',
93
	            'query'  => array(
94
	                'territory_id'  => $territory_id
95
	            )
96
	        ));
97
	
98
	        return $result;
99
	    }
100
		
101
		public function updateTerritory($params)
102
	    {

src/Route4Me/AddressBookLocation.php 1 location

@@ 153-164 (lines=12) @@
150
			return $ablocations;
151
		}
152
		
153
		public function deleteAdressBookLocation($address_ids)
154
	    {
155
	        $address = Route4Me::makeRequst(array(
156
	            'url'    => self::$apiUrl,
157
	            'method' => 'DELETEARRAY',
158
	            'query'  => array(
159
	                'address_ids'     => $address_ids
160
	            )
161
	        ));
162
	
163
	        return $address;
164
	    }
165
		
166
		public function updateAdressBookLocation($params)
167
	    {