Completed
Branch master (07b0df)
by judicael
05:36 queued 02:38
created
bundles/tests/Demo/app/Controller/Exemple1Test.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -39,31 +39,31 @@
 block discarded – undo
39 39
 	 *
40 40
 	 * @access public
41 41
 	 * @return void
42
-     * @test
42
+	 * @test
43 43
 	 */
44 44
 
45 45
 	public function testShow()
46
-    {
47
-	    try {
46
+	{
47
+		try {
48 48
 
49
-            ob_start();
50
-            $exemple1 = new Exemple1;
51
-            $exemple1->show();
52
-            $content = ob_get_clean();
49
+			ob_start();
50
+			$exemple1 = new Exemple1;
51
+			$exemple1->show();
52
+			$content = ob_get_clean();
53 53
 
54
-            //var_dump(debug_backtrace());
54
+			//var_dump(debug_backtrace());
55 55
 
56
-            if ($content) {
56
+			if ($content) {
57 57
 
58
-                $this->assertTrue(true);
59
-            }
60
-            else {
61
-                $this->assertTrue(false);
62
-            }
63
-        }
64
-        catch(\Exception $e) {
65
-            $this->assertTrue(false);
66
-        }
58
+				$this->assertTrue(true);
59
+			}
60
+			else {
61
+				$this->assertTrue(false);
62
+			}
63
+		}
64
+		catch(\Exception $e) {
65
+			$this->assertTrue(false);
66
+		}
67 67
 
68 68
 	}
69 69
 }
70 70
\ No newline at end of file
Please login to merge, or discard this patch.
bundles/lib/Ldap.php 1 patch
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.
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/Image.php 1 patch
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.
bundles/lib/Cache.php 1 patch
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.
bundles/lib/Asset.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -40,28 +40,28 @@  discard block
 block discarded – undo
40 40
 	 */
41 41
 	public function javascripts() : array {
42 42
 	    
43
-	    $sDefaultPath = 'http://'.$_SERVER['HTTP_HOST'].'/getJs?';
44
-	    $aJavascript = func_get_args();
45
-	    $aReturns = array();
43
+		$sDefaultPath = 'http://'.$_SERVER['HTTP_HOST'].'/getJs?';
44
+		$aJavascript = func_get_args();
45
+		$aReturns = array();
46 46
 	    
47
-	    foreach($aJavascript as $aJsCombination) {
47
+		foreach($aJavascript as $aJsCombination) {
48 48
 	        
49
-	        $sJsPath = $sDefaultPath;
49
+			$sJsPath = $sDefaultPath;
50 50
 	        
51
-	        foreach ($aJsCombination as $sJsToAdd) {
51
+			foreach ($aJsCombination as $sJsToAdd) {
52 52
 	            
53
-	            $sJsPath = $sJsToAdd.'&';
54
-	        }
53
+				$sJsPath = $sJsToAdd.'&';
54
+			}
55 55
 	    
56
-    	    if (defined('ASSET_VERSION') && ASSET_VERSION) {
56
+			if (defined('ASSET_VERSION') && ASSET_VERSION) {
57 57
     	        
58
-    	        $sJsPath = ASSET_VERSION;
59
-    	    }
58
+				$sJsPath = ASSET_VERSION;
59
+			}
60 60
 	        
61
-	        $aReturns[] = $sJsPath;
62
-	    }
61
+			$aReturns[] = $sJsPath;
62
+		}
63 63
 	    
64
-	    return $aReturns;
64
+		return $aReturns;
65 65
 	}
66 66
 	
67 67
 	/**
@@ -75,27 +75,27 @@  discard block
 block discarded – undo
75 75
 	 */
76 76
 	public function stylesheets() : array {
77 77
 	    
78
-	    $sDefaultPath = 'http://'.$_SERVER['HTTP_HOST'].'/getCss?';
79
-	    $aCss = func_get_args();
80
-	    $aReturns = array();
78
+		$sDefaultPath = 'http://'.$_SERVER['HTTP_HOST'].'/getCss?';
79
+		$aCss = func_get_args();
80
+		$aReturns = array();
81 81
 	    
82
-	    foreach($aCss as $aCssCombination) {
82
+		foreach($aCss as $aCssCombination) {
83 83
 	        
84
-	        $sCssPath = $sDefaultPath;
84
+			$sCssPath = $sDefaultPath;
85 85
 	        
86
-	        foreach ($aCssCombination as $sCssToAdd) {
86
+			foreach ($aCssCombination as $sCssToAdd) {
87 87
 	            
88
-	            $sCssPath = $sCssToAdd.'&';
89
-	        }
88
+				$sCssPath = $sCssToAdd.'&';
89
+			}
90 90
 	    
91
-    	    if (defined('ASSET_VERSION') && ASSET_VERSION) {
91
+			if (defined('ASSET_VERSION') && ASSET_VERSION) {
92 92
     	        
93
-    	        $sJsPath = ASSET_VERSION;
94
-    	    }
93
+				$sJsPath = ASSET_VERSION;
94
+			}
95 95
 	        
96
-	        $aReturns[] = $sCssPath;
97
-	    }
96
+			$aReturns[] = $sCssPath;
97
+		}
98 98
 	    
99
-	    return $aReturns;
99
+		return $aReturns;
100 100
 	}
101 101
 }
Please login to merge, or discard this patch.
bundles/lib/Response.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -197,12 +197,12 @@  discard block
 block discarded – undo
197 197
 
198 198
 	/**
199 199
 	 * Response constructor.
200
-     */
200
+	 */
201 201
 	public function __construct()
202 202
 	{
203 203
 		/**
204 204
 		 * @return \Venus\lib\Request
205
-         */
205
+		 */
206 206
 		$this->headers = function() { $request = new Request(); return $request->headers; };
207 207
 	}
208 208
 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 
235 235
 	/**
236 236
 	 * @return string
237
-     */
237
+	 */
238 238
 	public function getContent() : string
239 239
 	{
240 240
 		return $this->content;
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 	/**
244 244
 	 * @param string $content
245 245
 	 * @return Response
246
-     */
246
+	 */
247 247
 	public function setContent(string $content) : Response
248 248
 	{
249 249
 		$this->content = $content;
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
 
253 253
 	/**
254 254
 	 * @return int
255
-     */
255
+	 */
256 256
 	public function getStatusCode() : int
257 257
 	{
258 258
 		return $this->statusCode;
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
 	/**
262 262
 	 * @param int $statusCode
263 263
 	 * @return Response
264
-     */
264
+	 */
265 265
 	public function setStatusCode(int $statusCode) : Response
266 266
 	{
267 267
 		$this->statusCode = $statusCode;
Please login to merge, or discard this patch.
bundles/lib/Request.php 1 patch
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
 	 */
48 48
 	public function __construct()
49 49
 	{
50
-        $this->cookies = function() { return new Cookies(); };
51
-        $this->files = function() { return new Files(); };
52
-        $this->headers = function() { return new Headers(); };
53
-        $this->query = function() { return new Query(); };
54
-        $this->request = function() { return new RequestPost(); };
50
+		$this->cookies = function() { return new Cookies(); };
51
+		$this->files = function() { return new Files(); };
52
+		$this->headers = function() { return new Headers(); };
53
+		$this->query = function() { return new Query(); };
54
+		$this->request = function() { return new RequestPost(); };
55 55
 		$this->server = function() { return new Server(); };
56 56
 	}
57 57
 
@@ -120,13 +120,13 @@  discard block
 block discarded – undo
120 120
 	 *
121 121
 	 * @access public
122 122
 	 * @return bool
123
-     * @deprecated  don't use this method because they return a false result
124
-     *              delete in the version 5
125
-     * @throws \Exception
123
+	 * @deprecated  don't use this method because they return a false result
124
+	 *              delete in the version 5
125
+	 * @throws \Exception
126 126
 	 */
127 127
 	public static function getPreferredLanguage()
128 128
 	{
129
-        throw new \Exception("Use getLanguages() method now!");
129
+		throw new \Exception("Use getLanguages() method now!");
130 130
 	}
131 131
 
132 132
 	/**
@@ -171,8 +171,8 @@  discard block
 block discarded – undo
171 171
 	 * @access public
172 172
 	 * @param  string $name
173 173
 	 * @return mixed
174
-     * @deprecated  please use $this->request->get()
175
-     *              delete in the version 5
174
+	 * @deprecated  please use $this->request->get()
175
+	 *              delete in the version 5
176 176
 	 */
177 177
 	public function getPost(string $name)
178 178
 	{
@@ -187,22 +187,22 @@  discard block
 block discarded – undo
187 187
 	 */
188 188
 	public static function getPut() 
189 189
 	{	    
190
-	    $aPut = array();
190
+		$aPut = array();
191 191
 	    
192
-	    $rPutResource = fopen("php://input", "r");
192
+		$rPutResource = fopen("php://input", "r");
193 193
 	    
194
-	    while ($sData = fread($rPutResource, 1024)) {
194
+		while ($sData = fread($rPutResource, 1024)) {
195 195
 
196
-	        $aSeparatePut = explode('&', $sData);
196
+			$aSeparatePut = explode('&', $sData);
197 197
 	        
198
-	        foreach($aSeparatePut as $sOne) {
198
+			foreach($aSeparatePut as $sOne) {
199 199
 	            
200
-	            $aOnePut = explode('=', $sOne);
201
-	            $aPut[$aOnePut[0]] = $aOnePut[1];
202
-	        }
203
-	    }
200
+				$aOnePut = explode('=', $sOne);
201
+				$aPut[$aOnePut[0]] = $aOnePut[1];
202
+			}
203
+		}
204 204
 	    
205
-	    return $aPut;
205
+		return $aPut;
206 206
 	}
207 207
 
208 208
 	/**
@@ -221,29 +221,29 @@  discard block
 block discarded – undo
221 221
 		else if ($iCode === 404) { header('HTTP/1.1 404 Not Found'); }
222 222
 	}
223 223
 
224
-    /**
225
-     * get http method
226
-     * @return string
227
-     */
228
-    public function getMethod() : string
229
-    {
230
-        return $this->server->get('REQUEST_METHOD');
231
-    }
232
-
233
-    /**
234
-     * return languages accepted by the customer
235
-     * @return array
236
-     */
237
-    public function getLanguages() : array
238
-    {
239
-        if (!self::isCliRequest()) { return explode(',', preg_replace('/^([^;]);?.*$/', '$1', $_SERVER['HTTP_ACCEPT_LANGUAGE'])); }
240
-        else { return array(); }
241
-    }
224
+	/**
225
+	 * get http method
226
+	 * @return string
227
+	 */
228
+	public function getMethod() : string
229
+	{
230
+		return $this->server->get('REQUEST_METHOD');
231
+	}
232
+
233
+	/**
234
+	 * return languages accepted by the customer
235
+	 * @return array
236
+	 */
237
+	public function getLanguages() : array
238
+	{
239
+		if (!self::isCliRequest()) { return explode(',', preg_replace('/^([^;]);?.*$/', '$1', $_SERVER['HTTP_ACCEPT_LANGUAGE'])); }
240
+		else { return array(); }
241
+	}
242 242
 
243 243
 	/**
244 244
 	 * get path info
245 245
 	 * @return string
246
-     */
246
+	 */
247 247
 	public function getPathInfo() : string
248 248
 	{
249 249
 		return $this->server->get('REQUEST_URI');
Please login to merge, or discard this patch.