Code Duplication    Length = 10-10 lines in 3 locations

geodirectory-admin/google-api-php-client/src/contrib/Google_AnalyticsService.php 3 locations

@@ 1330-1339 (lines=10) @@
1327
  }
1328
}
1329
1330
class Google_AccountPermissions extends Google_Model {
1331
  public $effective;
1332
  public function setEffective(/* array(Google_string) */ $effective) {
1333
    $this->assertIsArray($effective, 'Google_string', __METHOD__);
1334
    $this->effective = $effective;
1335
  }
1336
  public function getEffective() {
1337
    return $this->effective;
1338
  }
1339
}
1340
1341
class Google_AccountRef extends Google_Model {
1342
  public $href;
@@ 3504-3513 (lines=10) @@
3501
  }
3502
}
3503
3504
class Google_ProfilePermissions extends Google_Model {
3505
  public $effective;
3506
  public function setEffective(/* array(Google_string) */ $effective) {
3507
    $this->assertIsArray($effective, 'Google_string', __METHOD__);
3508
    $this->effective = $effective;
3509
  }
3510
  public function getEffective() {
3511
    return $this->effective;
3512
  }
3513
}
3514
3515
class Google_ProfileRef extends Google_Model {
3516
  public $accountId;
@@ 4327-4336 (lines=10) @@
4324
  }
4325
}
4326
4327
class Google_WebpropertyPermissions extends Google_Model {
4328
  public $effective;
4329
  public function setEffective(/* array(Google_string) */ $effective) {
4330
    $this->assertIsArray($effective, 'Google_string', __METHOD__);
4331
    $this->effective = $effective;
4332
  }
4333
  public function getEffective() {
4334
    return $this->effective;
4335
  }
4336
}
4337