Passed
Branch master (e94900)
by judicael
03:54
created
bundles/lib/Ldap.php 3 patches
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -30,12 +30,12 @@  discard block
 block discarded – undo
30 30
  */
31 31
 class Ldap
32 32
 {
33
-    /**
34
-     * connection at ldap server
35
-     * 
36
-     * @access private
37
-     * @var    resource
38
-     */
33
+	/**
34
+	 * connection at ldap server
35
+	 * 
36
+	 * @access private
37
+	 * @var    resource
38
+	 */
39 39
 	private $_rConnect;
40 40
 	
41 41
 	/**
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public function __construct()
64 64
 	{
65
-	    $oDbConf = Config::get('Ldap')->configuration;
65
+		$oDbConf = Config::get('Ldap')->configuration;
66 66
 
67 67
 		$this->_sBase = $oDbConf->base;
68 68
 
@@ -77,28 +77,28 @@  discard block
 block discarded – undo
77 77
 	 * @access public
78 78
 	 * @return array
79 79
 	 */
80
-    public function getGroups() : array
81
-    {
82
-        $rSearch = ldap_search( $this->_rConnect , $this->_sBase , "objectclass=group" , array("cn") );
83
-        $aEntries = ldap_get_entries($this->_rConnect, $rSearch);
84
-        $aGroups = array();
80
+	public function getGroups() : array
81
+	{
82
+		$rSearch = ldap_search( $this->_rConnect , $this->_sBase , "objectclass=group" , array("cn") );
83
+		$aEntries = ldap_get_entries($this->_rConnect, $rSearch);
84
+		$aGroups = array();
85 85
 
86
-        for ( $i = 0 ; $i < $aEntries["count"] ; $i++ ) {
86
+		for ( $i = 0 ; $i < $aEntries["count"] ; $i++ ) {
87 87
             
88
-            $aGroups[] = utf8_encode($aEntries[$i]["dn"]);
89
-        }
90
-
91
-        return $aGroups;
92
-    }
93
-
94
-    /**
95
-     * Authentification in Ldap
96
-     * 
97
-     * @access public
98
-     * @param  string $sUser
99
-     * @param  string $sPassword
100
-     * @return \Venus\lib\Ldap
101
-     */
88
+			$aGroups[] = utf8_encode($aEntries[$i]["dn"]);
89
+		}
90
+
91
+		return $aGroups;
92
+	}
93
+
94
+	/**
95
+	 * Authentification in Ldap
96
+	 * 
97
+	 * @access public
98
+	 * @param  string $sUser
99
+	 * @param  string $sPassword
100
+	 * @return \Venus\lib\Ldap
101
+	 */
102 102
 	public function bind($sUser, $sPassword) : Ldap
103 103
 	{
104 104
 		return $this->_bConnected = ldap_bind($this->_rConnect, $sUser, $sPassword);
@@ -113,8 +113,8 @@  discard block
 block discarded – undo
113 113
 	 */
114 114
 	public function unbind() : bool
115 115
 	{
116
-	    if ($this->_bConnected) { return $this->_bConnected = ldap_unbind($this->_rConnect); }
117
-	    else { return true; }
116
+		if ($this->_bConnected) { return $this->_bConnected = ldap_unbind($this->_rConnect); }
117
+		else { return true; }
118 118
 	}
119 119
 
120 120
 	/**
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,11 +79,11 @@  discard block
 block discarded – undo
79 79
 	 */
80 80
     public function getGroups() : array
81 81
     {
82
-        $rSearch = ldap_search( $this->_rConnect , $this->_sBase , "objectclass=group" , array("cn") );
82
+        $rSearch = ldap_search($this->_rConnect, $this->_sBase, "objectclass=group", array("cn"));
83 83
         $aEntries = ldap_get_entries($this->_rConnect, $rSearch);
84 84
         $aGroups = array();
85 85
 
86
-        for ( $i = 0 ; $i < $aEntries["count"] ; $i++ ) {
86
+        for ($i = 0; $i < $aEntries["count"]; $i++) {
87 87
             
88 88
             $aGroups[] = utf8_encode($aEntries[$i]["dn"]);
89 89
         }
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 		    
192 192
 			$aResultSet[$i] = array_intersect_key($aEntries[$i], $aMask);
193 193
 
194
-			foreach($aResultSet[$i] as &$aValues) {
194
+			foreach ($aResultSet[$i] as &$aValues) {
195 195
 			    
196 196
 				unset($aValues['count']);
197 197
 			}
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,8 +113,7 @@
 block discarded – undo
113 113
 	 */
114 114
 	public function unbind() : bool
115 115
 	{
116
-	    if ($this->_bConnected) { return $this->_bConnected = ldap_unbind($this->_rConnect); }
117
-	    else { return true; }
116
+	    if ($this->_bConnected) { return $this->_bConnected = ldap_unbind($this->_rConnect); } else { return true; }
118 117
 	}
119 118
 
120 119
 	/**
Please login to merge, or discard this patch.
bundles/lib/Cookie.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
   	public function set(string $sName, $mValue, int $iExpire = 0, string $sPath = '', string $sDomain = '', int $iSecure = false) : Cookie
40 40
 	{
41 41
   		$iExpire = time() + $iExpire;
42
-    	setcookie($sName, $mValue, $iExpire, $sPath, $sDomain, $iSecure);
43
-    	return $this;
42
+		setcookie($sName, $mValue, $iExpire, $sPath, $sDomain, $iSecure);
43
+		return $this;
44 44
   	}
45 45
 
46 46
   	/**
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
   	 */
53 53
   	public function get(string $sName)
54 54
 	{
55
-    	return $_COOKIE[$sName];
55
+		return $_COOKIE[$sName];
56 56
   	}
57 57
 
58 58
   	/**
@@ -64,6 +64,6 @@  discard block
 block discarded – undo
64 64
   	 */
65 65
   	public function exists(string $sName) : bool
66 66
 	{
67
-    	return isset($_COOKIE[$sName]);
67
+		return isset($_COOKIE[$sName]);
68 68
   	}
69 69
 }
Please login to merge, or discard this patch.
bundles/lib/Response/ResponseInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
  */
31 31
 interface ResponseInterface
32 32
 {
33
-    /**
33
+	/**
34 34
 	 * translate the content
35 35
 	 *
36 36
 	 * @access public
Please login to merge, or discard this patch.
bundles/lib/Response/Mock.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -40,10 +40,10 @@
 block discarded – undo
40 40
 	 * @param  mixed $mContent content to translate
41 41
 	 * @return mixed
42 42
 	 */
43
-    public static function translate($mContent)
44
-    {
45
-        // TODO Auto-generated method stub
46
-        return $mContent;
47
-    }
43
+	public static function translate($mContent)
44
+	{
45
+		// TODO Auto-generated method stub
46
+		return $mContent;
47
+	}
48 48
 
49 49
 }
Please login to merge, or discard this patch.
bundles/lib/Response/Yaml.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,16 +34,16 @@
 block discarded – undo
34 34
 {
35 35
 	/**
36 36
 	 * translate the content
37
-     * @see \Venus\lib\Response\ResponseInterface::translate()
37
+	 * @see \Venus\lib\Response\ResponseInterface::translate()
38 38
 	 *
39 39
 	 * @access public
40 40
 	 * @param  mixed $mContent content to translate
41 41
 	 * @return mixed
42 42
 	 */
43
-    public static function translate($mContent)
44
-    {
45
-        // TODO Auto-generated method stub
46
-        return yaml_emit($mContent);
47
-    }
43
+	public static function translate($mContent)
44
+	{
45
+		// TODO Auto-generated method stub
46
+		return yaml_emit($mContent);
47
+	}
48 48
 
49 49
 }
Please login to merge, or discard this patch.
bundles/lib/Response/Json.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,9 +41,9 @@
 block discarded – undo
41 41
 	 * @param  mixed $mContent content to translate
42 42
 	 * @return mixed
43 43
 	 */
44
-    public static function translate($mContent)
45
-    {
46
-        return json_encode(Object::object_to_array($mContent));
47
-    }
44
+	public static function translate($mContent)
45
+	{
46
+		return json_encode(Object::object_to_array($mContent));
47
+	}
48 48
 
49 49
 }
Please login to merge, or discard this patch.
bundles/lib/Bash.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,6 +148,6 @@
 block discarded – undo
148 148
 	 */
149 149
 	private static function _applyCode(string $sContent, string $sCode) : string
150 150
 	{
151
-		return "\033[" . $sCode . "m" . $sContent . "\033[0m\n";
151
+		return "\033[".$sCode."m".$sContent."\033[0m\n";
152 152
 	}
153 153
 }
154 154
\ No newline at end of file
Please login to merge, or discard this patch.
bundles/lib/Image.php 3 patches
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -34,61 +34,61 @@
 block discarded – undo
34 34
 	 */	
35 35
 	private $_sLanguage = LANGUAGE;
36 36
 
37
-    /**
38
-     * set the language if you don't want take the default language of the configuration file
39
-     *
40
-     * @access public
41
-     * @param int $iImageUri
42
-     * @param  int $iWidth
43
-     * @param  int $iHeight
44
-     * @param bool $bKeepDimension
45
-     * @return void
46
-     */
37
+	/**
38
+	 * set the language if you don't want take the default language of the configuration file
39
+	 *
40
+	 * @access public
41
+	 * @param int $iImageUri
42
+	 * @param  int $iWidth
43
+	 * @param  int $iHeight
44
+	 * @param bool $bKeepDimension
45
+	 * @return void
46
+	 */
47 47
 	public static function showImageInSize(int $iImageUri, int $iWidth, int $iHeight, bool $bKeepDimension = false)
48 48
 	{	
49
-	    $aSize = getimagesize($iImageUri);
50
-	    $rActualImage = imagecreatefromjpeg($iImageUri);
49
+		$aSize = getimagesize($iImageUri);
50
+		$rActualImage = imagecreatefromjpeg($iImageUri);
51 51
 	    
52
-	    $ImageChoisie = imagecreatefromjpeg($_FILES['ImageNews']['tmp_name']);
53
-        $TailleImageChoisie = getimagesize($_FILES['ImageNews']['tmp_name']);
52
+		$ImageChoisie = imagecreatefromjpeg($_FILES['ImageNews']['tmp_name']);
53
+		$TailleImageChoisie = getimagesize($_FILES['ImageNews']['tmp_name']);
54 54
 
55
-        $rNewImage = imagecreatetruecolor($iWidth , $iHeight);
55
+		$rNewImage = imagecreatetruecolor($iWidth , $iHeight);
56 56
 
57
-        if ($bKeepDimension === false) {
57
+		if ($bKeepDimension === false) {
58 58
         
59
-            imagecopyresampled($rNewImage, $rActualImage, 0, 0, 0, 0, $iWidth, $iHeight, $aSize[0], $aSize[1]);
60
-        }
61
-        else {
59
+			imagecopyresampled($rNewImage, $rActualImage, 0, 0, 0, 0, $iWidth, $iHeight, $aSize[0], $aSize[1]);
60
+		}
61
+		else {
62 62
         
63
-            if ($aSize[0] > $aSize[1]) {
63
+			if ($aSize[0] > $aSize[1]) {
64 64
 
65
-                $rWhite = imagecolorallocate($rNewImage, 255, 255, 255);
66
-                imagefilledrectangle($rNewImage, 0, 0, $iWidth, $iHeight, $rWhite);
67
-                $fCoef = $aSize[1] / $aSize[0];
68
-                $iHeight = round($iWidth * $fCoef);
69
-                $iDestY = round(($iWidth - $iHeight) / 2);
70
-                $iDestX = 0;
71
-            }
72
-            else {
65
+				$rWhite = imagecolorallocate($rNewImage, 255, 255, 255);
66
+				imagefilledrectangle($rNewImage, 0, 0, $iWidth, $iHeight, $rWhite);
67
+				$fCoef = $aSize[1] / $aSize[0];
68
+				$iHeight = round($iWidth * $fCoef);
69
+				$iDestY = round(($iWidth - $iHeight) / 2);
70
+				$iDestX = 0;
71
+			}
72
+			else {
73 73
 
74
-                $rWhite = imagecolorallocate($rNewImage, 255, 255, 255);
75
-                imagefilledrectangle($rNewImage, 0, 0, $iWidth, $iHeight, $rWhite);
76
-                $fCoef = $aSize[0] / $aSize[1];
77
-                $iWidth = round($iHeight * $fCoef);
78
-                $iDestX = round(($iHeight - $iWidth) / 2);
79
-                $iDestY = 0;
80
-            }
74
+				$rWhite = imagecolorallocate($rNewImage, 255, 255, 255);
75
+				imagefilledrectangle($rNewImage, 0, 0, $iWidth, $iHeight, $rWhite);
76
+				$fCoef = $aSize[0] / $aSize[1];
77
+				$iWidth = round($iHeight * $fCoef);
78
+				$iDestX = round(($iHeight - $iWidth) / 2);
79
+				$iDestY = 0;
80
+			}
81 81
             
82
-            $rWhite = imagecolorallocate($rNewImage, 255, 255, 255);
83
-            imagefilledrectangle($rNewImage, 0, 0, $iWidth, $iHeight, $rWhite);
84
-            imagecopyresampled($rNewImage, $rActualImage, $iDestX, $iDestY, 0, 0, $iWidth, $iHeight, $aSize[0], $aSize[1]);
85
-        }
82
+			$rWhite = imagecolorallocate($rNewImage, 255, 255, 255);
83
+			imagefilledrectangle($rNewImage, 0, 0, $iWidth, $iHeight, $rWhite);
84
+			imagecopyresampled($rNewImage, $rActualImage, $iDestX, $iDestY, 0, 0, $iWidth, $iHeight, $aSize[0], $aSize[1]);
85
+		}
86 86
         
87
-        imagedestroy($rActualImage);
88
-        $NomImageChoisie = explode('.', $rNewImage);
89
-        $NomImageExploitable = time();
87
+		imagedestroy($rActualImage);
88
+		$NomImageChoisie = explode('.', $rNewImage);
89
+		$NomImageExploitable = time();
90 90
       
91
-        header('Content-Type: image/jpeg');
92
-        imagejpeg($rNewImage , null, 100);
91
+		header('Content-Type: image/jpeg');
92
+		imagejpeg($rNewImage , null, 100);
93 93
 	}
94 94
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	    $ImageChoisie = imagecreatefromjpeg($_FILES['ImageNews']['tmp_name']);
53 53
         $TailleImageChoisie = getimagesize($_FILES['ImageNews']['tmp_name']);
54 54
 
55
-        $rNewImage = imagecreatetruecolor($iWidth , $iHeight);
55
+        $rNewImage = imagecreatetruecolor($iWidth, $iHeight);
56 56
 
57 57
         if ($bKeepDimension === false) {
58 58
         
@@ -89,6 +89,6 @@  discard block
 block discarded – undo
89 89
         $NomImageExploitable = time();
90 90
       
91 91
         header('Content-Type: image/jpeg');
92
-        imagejpeg($rNewImage , null, 100);
92
+        imagejpeg($rNewImage, null, 100);
93 93
 	}
94 94
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
         if ($bKeepDimension === false) {
58 58
         
59 59
             imagecopyresampled($rNewImage, $rActualImage, 0, 0, 0, 0, $iWidth, $iHeight, $aSize[0], $aSize[1]);
60
-        }
61
-        else {
60
+        } else {
62 61
         
63 62
             if ($aSize[0] > $aSize[1]) {
64 63
 
@@ -68,8 +67,7 @@  discard block
 block discarded – undo
68 67
                 $iHeight = round($iWidth * $fCoef);
69 68
                 $iDestY = round(($iWidth - $iHeight) / 2);
70 69
                 $iDestX = 0;
71
-            }
72
-            else {
70
+            } else {
73 71
 
74 72
                 $rWhite = imagecolorallocate($rNewImage, 255, 255, 255);
75 73
                 imagefilledrectangle($rNewImage, 0, 0, $iWidth, $iHeight, $rWhite);
Please login to merge, or discard this patch.
bundles/lib/Cache.php 3 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -137,15 +137,15 @@  discard block
 block discarded – undo
137 137
   		  
138 138
 			if (!isset(self::$_aCache['memcache'])) { 
139 139
 			    
140
-			    $oDbConf = Config::get('Memcache')->configuration;
140
+				$oDbConf = Config::get('Memcache')->configuration;
141 141
 			    
142
-			    if (isset($oDbConf->port)) { $sPort = $oDbConf->port; }
143
-			    else { $sPort = null; }
142
+				if (isset($oDbConf->port)) { $sPort = $oDbConf->port; }
143
+				else { $sPort = null; }
144 144
 			    
145
-			    if (isset($oDbConf->timeout)) { $iTimeout = $oDbConf->timeout; }
146
-			    else { $iTimeout = null; }
145
+				if (isset($oDbConf->timeout)) { $iTimeout = $oDbConf->timeout; }
146
+				else { $iTimeout = null; }
147 147
 			    
148
-			    self::$_aCache['memcache'] = new CacheMemcache($oDbConf->host, $sPort, $iTimeout); 
148
+				self::$_aCache['memcache'] = new CacheMemcache($oDbConf->host, $sPort, $iTimeout); 
149 149
 			}
150 150
 
151 151
 			return self::$_aCache['memcache'];
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
 		    
161 161
 			if (!isset(self::$_aCache['redis'])) {
162 162
 			    
163
-			    $oDbConf = Config::get('Redis')->configuration;
164
-			    self::$_aCache['memcache'] = new Redis($oDbConf);
163
+				$oDbConf = Config::get('Redis')->configuration;
164
+				self::$_aCache['memcache'] = new Redis($oDbConf);
165 165
 			}
166 166
 
167 167
 			return self::$_aCache['redis'];
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 	 * @param  int $iTimeout expiration of cache
92 92
 	 * @return bool
93 93
 	 */
94
-	public static function get(string $sName, int &$iFlags = null, int $iTimeout = 0) : bool
94
+	public static function get(string $sName, int&$iFlags = null, int $iTimeout = 0) : bool
95 95
 	{
96 96
 		return self::_getCacheObject()->get($sName, $iFlags, $iTimeout);
97 97
 	}
Please login to merge, or discard this patch.
Braces   +7 added lines, -17 removed lines patch added patch discarded remove patch
@@ -60,11 +60,7 @@  discard block
 block discarded – undo
60 60
 	 */
61 61
 	public static function setCacheType(string $sCacheName)
62 62
 	{
63
-		if ($sCacheName === 'file') { self::$_sTypeOfCache = 'file'; }
64
-		else if ($sCacheName === 'memcache') { self::$_sTypeOfCache = 'memcache'; }
65
-		else if ($sCacheName === 'apc') { self::$_sTypeOfCache = 'apc'; }
66
-		else if ($sCacheName === 'redis') { self::$_sTypeOfCache = 'redis'; }
67
-		else { self::$_sTypeOfCache = 'mock'; }
63
+		if ($sCacheName === 'file') { self::$_sTypeOfCache = 'file'; } else if ($sCacheName === 'memcache') { self::$_sTypeOfCache = 'memcache'; } else if ($sCacheName === 'apc') { self::$_sTypeOfCache = 'apc'; } else if ($sCacheName === 'redis') { self::$_sTypeOfCache = 'redis'; } else { self::$_sTypeOfCache = 'mock'; }
68 64
 	}
69 65
 
70 66
 	/**
@@ -132,31 +128,26 @@  discard block
 block discarded – undo
132 128
 			if (!isset(self::$_aCache['file'])) { self::$_aCache['file'] = new CacheFile; }
133 129
 
134 130
 			return self::$_aCache['file'];
135
-		}
136
-		else if (self::$_sTypeOfCache === 'memcache') {
131
+		} else if (self::$_sTypeOfCache === 'memcache') {
137 132
   		  
138 133
 			if (!isset(self::$_aCache['memcache'])) { 
139 134
 			    
140 135
 			    $oDbConf = Config::get('Memcache')->configuration;
141 136
 			    
142
-			    if (isset($oDbConf->port)) { $sPort = $oDbConf->port; }
143
-			    else { $sPort = null; }
137
+			    if (isset($oDbConf->port)) { $sPort = $oDbConf->port; } else { $sPort = null; }
144 138
 			    
145
-			    if (isset($oDbConf->timeout)) { $iTimeout = $oDbConf->timeout; }
146
-			    else { $iTimeout = null; }
139
+			    if (isset($oDbConf->timeout)) { $iTimeout = $oDbConf->timeout; } else { $iTimeout = null; }
147 140
 			    
148 141
 			    self::$_aCache['memcache'] = new CacheMemcache($oDbConf->host, $sPort, $iTimeout); 
149 142
 			}
150 143
 
151 144
 			return self::$_aCache['memcache'];
152
-		}
153
-		else if (self::$_sTypeOfCache === 'apc') {
145
+		} else if (self::$_sTypeOfCache === 'apc') {
154 146
 
155 147
 			if (!isset(self::$_aCache['apc'])) { self::$_aCache['apc'] = new Apc; }
156 148
 
157 149
 			return self::$_aCache['apc'];
158
-		}
159
-		else if (self::$_sTypeOfCache === 'redis') {
150
+		} else if (self::$_sTypeOfCache === 'redis') {
160 151
 		    
161 152
 			if (!isset(self::$_aCache['redis'])) {
162 153
 			    
@@ -165,8 +156,7 @@  discard block
 block discarded – undo
165 156
 			}
166 157
 
167 158
 			return self::$_aCache['redis'];
168
-		}
169
-		else if (self::$_sTypeOfCache === 'mock') {
159
+		} else if (self::$_sTypeOfCache === 'mock') {
170 160
 		    
171 161
 			if (!isset(self::$_aCache['mock'])) { self::$_aCache['mock'] = new Mock; }
172 162
 
Please login to merge, or discard this patch.