@@ -59,8 +59,7 @@ |
||
| 59 | 59 | * if the request is ajax |
| 60 | 60 | * |
| 61 | 61 | * @access public |
| 62 | - * @param string $sName name of the template |
|
| 63 | - * @return bool |
|
| 62 | + * @return boolean|null |
|
| 64 | 63 | */ |
| 65 | 64 | public static function isXmlHttpRequest() |
| 66 | 65 | { |
@@ -69,8 +69,7 @@ discard block |
||
| 69 | 69 | if (array_key_exists('HTTP_X_REQUESTED_WITH', $_SERVER) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { |
| 70 | 70 | |
| 71 | 71 | return true; |
| 72 | - } |
|
| 73 | - else { |
|
| 72 | + } else { |
|
| 74 | 73 | |
| 75 | 74 | return false; |
| 76 | 75 | } |
@@ -85,8 +84,7 @@ discard block |
||
| 85 | 84 | */ |
| 86 | 85 | public static function isHttpRequest() |
| 87 | 86 | { |
| 88 | - if (isset($_SERVER) && isset($_SERVER['HTTP_HOST'])) { return true; } |
|
| 89 | - else { return false; } |
|
| 87 | + if (isset($_SERVER) && isset($_SERVER['HTTP_HOST'])) { return true; } else { return false; } |
|
| 90 | 88 | } |
| 91 | 89 | |
| 92 | 90 | /** |
@@ -97,8 +95,7 @@ discard block |
||
| 97 | 95 | */ |
| 98 | 96 | public static function isHttpsRequest() |
| 99 | 97 | { |
| 100 | - if (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') { return true; } |
|
| 101 | - else { return false; } |
|
| 98 | + if (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') { return true; } else { return false; } |
|
| 102 | 99 | } |
| 103 | 100 | |
| 104 | 101 | /** |
@@ -111,8 +108,7 @@ discard block |
||
| 111 | 108 | { |
| 112 | 109 | $sSapiType = php_sapi_name(); |
| 113 | 110 | |
| 114 | - if (substr($sSapiType, 0, 3) == 'cgi' || defined('STDIN')) { return true; } |
|
| 115 | - else { return false; } |
|
| 111 | + if (substr($sSapiType, 0, 3) == 'cgi' || defined('STDIN')) { return true; } else { return false; } |
|
| 116 | 112 | } |
| 117 | 113 | |
| 118 | 114 | /** |
@@ -137,8 +133,7 @@ discard block |
||
| 137 | 133 | */ |
| 138 | 134 | public static function getParameters() |
| 139 | 135 | { |
| 140 | - if (isset($_GET)) { return $_GET; } |
|
| 141 | - else { return array(); } |
|
| 136 | + if (isset($_GET)) { return $_GET; } else { return array(); } |
|
| 142 | 137 | } |
| 143 | 138 | |
| 144 | 139 | /** |
@@ -149,8 +144,7 @@ discard block |
||
| 149 | 144 | */ |
| 150 | 145 | public static function getPostParameters() |
| 151 | 146 | { |
| 152 | - if (isset($_POST)) { return $_POST; } |
|
| 153 | - else { return array(); } |
|
| 147 | + if (isset($_POST)) { return $_POST; } else { return array(); } |
|
| 154 | 148 | } |
| 155 | 149 | |
| 156 | 150 | /** |
@@ -161,8 +155,7 @@ discard block |
||
| 161 | 155 | */ |
| 162 | 156 | public function isPost() |
| 163 | 157 | { |
| 164 | - if (isset($_POST) && count($_POST) > 0) { return true; } |
|
| 165 | - else { return false; } |
|
| 158 | + if (isset($_POST) && count($_POST) > 0) { return true; } else { return false; } |
|
| 166 | 159 | } |
| 167 | 160 | |
| 168 | 161 | /** |
@@ -214,11 +207,7 @@ discard block |
||
| 214 | 207 | */ |
| 215 | 208 | public static function setStatus($iCode) |
| 216 | 209 | { |
| 217 | - if ($iCode === 200) { header('HTTP/1.1 200 Ok'); } |
|
| 218 | - else if ($iCode === 201) { header('HTTP/1.1 201 Created'); } |
|
| 219 | - else if ($iCode === 204) { header("HTTP/1.0 204 No Content"); } |
|
| 220 | - else if ($iCode === 403) { header('HTTP/1.1 403 Forbidden'); } |
|
| 221 | - else if ($iCode === 404) { header('HTTP/1.1 404 Not Found'); } |
|
| 210 | + if ($iCode === 200) { header('HTTP/1.1 200 Ok'); } else if ($iCode === 201) { header('HTTP/1.1 201 Created'); } else if ($iCode === 204) { header("HTTP/1.0 204 No Content"); } else if ($iCode === 403) { header('HTTP/1.1 403 Forbidden'); } else if ($iCode === 404) { header('HTTP/1.1 404 Not Found'); } |
|
| 222 | 211 | } |
| 223 | 212 | |
| 224 | 213 | /** |
@@ -236,8 +225,7 @@ discard block |
||
| 236 | 225 | */ |
| 237 | 226 | public function getLanguages() : array |
| 238 | 227 | { |
| 239 | - if (!self::isCliRequest()) { return explode(',', preg_replace('/^([^;]);?.*$/', '$1', $_SERVER['HTTP_ACCEPT_LANGUAGE'])); } |
|
| 240 | - else { return array(); } |
|
| 228 | + if (!self::isCliRequest()) { return explode(',', preg_replace('/^([^;]);?.*$/', '$1', $_SERVER['HTTP_ACCEPT_LANGUAGE'])); } else { return array(); } |
|
| 241 | 229 | } |
| 242 | 230 | |
| 243 | 231 | /** |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | * |
| 82 | 82 | * @access public |
| 83 | 83 | * @param string $sFile |
| 84 | - * @return bool|object |
|
| 84 | + * @return null|boolean |
|
| 85 | 85 | */ |
| 86 | 86 | public function upload(string $sFile) |
| 87 | 87 | { |
@@ -110,8 +110,7 @@ discard block |
||
| 110 | 110 | |
| 111 | 111 | if ($this->_sExtension === null) { $this->setExtension($sExtension); } |
| 112 | 112 | |
| 113 | - if ($this->_sName) { $sName = $sPath.$this->_sName.'.'.$this->_sExtension; } |
|
| 114 | - else { $sName = $sPath.md5(uniqid(rand(), true)).'.'.$this->_sExtension;} |
|
| 113 | + if ($this->_sName) { $sName = $sPath.$this->_sName.'.'.$this->_sExtension; } else { $sName = $sPath.md5(uniqid(rand(), true)).'.'.$this->_sExtension;} |
|
| 115 | 114 | |
| 116 | 115 | if ($this->_bProportion == true && ($this->_iWidth || $this->_iHeight)) { |
| 117 | 116 | |
@@ -129,8 +128,7 @@ discard block |
||
| 129 | 128 | imagecopyresampled($rNewImgTrueColor , $rNewImage, 0, 0, $fX, $fY, $this->_iWidth, $this->_iHeight, $iWidth * $fRatio - $fX * 2, $iHeight * $fRatio - $fY * 2); |
| 130 | 129 | |
| 131 | 130 | imagejpeg($rNewImgTrueColor , $sName, 100); |
| 132 | - } |
|
| 133 | - else { |
|
| 131 | + } else { |
|
| 134 | 132 | |
| 135 | 133 | $bResultat = move_uploaded_file($_FILES[$sFile]['tmp_name'], $sName); |
| 136 | 134 | |
@@ -56,12 +56,10 @@ |
||
| 56 | 56 | if ($content) { |
| 57 | 57 | |
| 58 | 58 | $this->assertTrue(true); |
| 59 | - } |
|
| 60 | - else { |
|
| 59 | + } else { |
|
| 61 | 60 | $this->assertTrue(false); |
| 62 | 61 | } |
| 63 | - } |
|
| 64 | - catch(\Exception $e) { |
|
| 62 | + } catch(\Exception $e) { |
|
| 65 | 63 | $this->assertTrue(false); |
| 66 | 64 | } |
| 67 | 65 | |
@@ -113,8 +113,7 @@ |
||
| 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 | /** |
@@ -57,8 +57,7 @@ discard block |
||
| 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 |
||
| 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); |
@@ -60,11 +60,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -227,9 +227,7 @@ |
||
| 227 | 227 | */ |
| 228 | 228 | public function translate($mContent) |
| 229 | 229 | { |
| 230 | - if (self::$_sKindOfReturn === 'yaml') { return Yaml::translate($mContent); } |
|
| 231 | - else if (self::$_sKindOfReturn === 'mock') { return Mock::translate($mContent); } |
|
| 232 | - else { return Json::translate($mContent); } |
|
| 230 | + if (self::$_sKindOfReturn === 'yaml') { return Yaml::translate($mContent); } else if (self::$_sKindOfReturn === 'mock') { return Mock::translate($mContent); } else { return Json::translate($mContent); } |
|
| 233 | 231 | } |
| 234 | 232 | |
| 235 | 233 | /** |
@@ -51,8 +51,7 @@ |
||
| 51 | 51 | |
| 52 | 52 | $fCallBack = function($sValue) use ($oJson) |
| 53 | 53 | { |
| 54 | - if (isset($oJson->$sValue)) { return $oJson->$sValue; } |
|
| 55 | - else { return ''; } |
|
| 54 | + if (isset($oJson->$sValue)) { return $oJson->$sValue; } else { return ''; } |
|
| 56 | 55 | }; |
| 57 | 56 | } |
| 58 | 57 | |
@@ -60,8 +60,7 @@ |
||
| 60 | 60 | $this->setName($sName); |
| 61 | 61 | $this->setValue($sValue); |
| 62 | 62 | |
| 63 | - if ($sLabel !== null) { $this->setLabel($sLabel); } |
|
| 64 | - else { $this->setLabel($sName); } |
|
| 63 | + if ($sLabel !== null) { $this->setLabel($sLabel); } else { $this->setLabel($sName); } |
|
| 65 | 64 | } |
| 66 | 65 | |
| 67 | 66 | /** |