Passed
Push — master ( cba2d0...6bd2b4 )
by Stefan
03:34
created

Device_mobileconfig_ios_56   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A proxySettings() 0 4 1
1
<?php
2
3
/*
4
 * ******************************************************************************
5
 * Copyright 2011-2017 DANTE Ltd. and GÉANT on behalf of the GN3, GN3+, GN4-1 
6
 * and GN4-2 consortia
7
 *
8
 * License: see the web/copyright.php file in the file structure
9
 * ******************************************************************************
10
 */
11
12
/**
13
 * This file contains the installer for iOS devices and Apple 10.7 Lion
14
 *
15
 *
16
 * @author Stefan Winter <[email protected]>
17
 * @package Developer
18
 */
19
/**
20
 * 
21
 */
22
23
namespace devices\apple_mobileconfig;
24
25
/**
26
 * This is the main implementation class of the module
27
 *
28
 * The class should only define one public method: writeInstaller.
29
 *
30
 * All other methods and properties should be private. This example sets zipInstaller method to protected, so that it can be seen in the documentation.
31
 *
32
 * @package Developer
33
 */
34
class Device_mobileconfig_ios_56 extends mobileconfigSuperclass {
35
36
    protected function proxySettings() {
37
        // iOS 5 and 6 do not support the Proxy block properly, so override
38
        // the function to do nothing.
39
        return "";
40
    }
41
42
}
43