@@ -76,7 +76,7 @@ |
||
| 76 | 76 | public function offsetSet($offset, $value) |
| 77 | 77 | { |
| 78 | 78 | $this->load(); |
| 79 | - $this->pages[$offset] = $value; |
|
| 79 | + $this->pages[$offset] = $value; |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | public function offsetUnset($offset) |
@@ -21,8 +21,8 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | class Plugin extends AbstractPlugin |
| 23 | 23 | { |
| 24 | - const HANDLER_ERROR_LOG = 'error_log'; |
|
| 25 | - const HANDLER_DEVELOPMENT = 'development'; |
|
| 24 | + const HANDLER_ERROR_LOG = 'error_log'; |
|
| 25 | + const HANDLER_DEVELOPMENT = 'development'; |
|
| 26 | 26 | |
| 27 | 27 | protected $events = ['plugins_loaded' => 'onPluginsLoaded']; |
| 28 | 28 | |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | $this->plugin['key'] = $pluginKey; |
| 53 | 53 | list($vendor, $name) = explode('\\', $this->plugin['key']); |
| 54 | 54 | $DS = DIRECTORY_SEPARATOR; |
| 55 | - $this->plugin['dir'] = PLUGINS_DIR . $vendor . $DS . $name . $DS; |
|
| 55 | + $this->plugin['dir'] = PLUGINS_DIR.$vendor.$DS.$name.$DS; |
|
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * init events |
@@ -132,6 +132,6 @@ discard block |
||
| 132 | 132 | */ |
| 133 | 133 | protected function getPluginPath($subPath = '') |
| 134 | 134 | { |
| 135 | - return $this->plugin['dir'] . ltrim($subPath, DIRECTORY_SEPARATOR); |
|
| 135 | + return $this->plugin['dir'].ltrim($subPath, DIRECTORY_SEPARATOR); |
|
| 136 | 136 | } |
| 137 | 137 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | { |
| 73 | 73 | list($vendor, $pluginName) = explode('\\', $pluginKey); |
| 74 | 74 | // uppercase first letter convention |
| 75 | - $pluginClassName = '\\Phile\\Plugin\\' . ucfirst($vendor) . '\\' . ucfirst($pluginName) . '\\Plugin'; |
|
| 75 | + $pluginClassName = '\\Phile\\Plugin\\'.ucfirst($vendor).'\\'.ucfirst($pluginName).'\\Plugin'; |
|
| 76 | 76 | |
| 77 | 77 | if (!class_exists($pluginClassName)) { |
| 78 | 78 | throw new PluginException( |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | $classNameParts |
| 126 | 126 | ); |
| 127 | 127 | |
| 128 | - $fileName = PLUGINS_DIR . implode(DIRECTORY_SEPARATOR, $classPath) . '.php'; |
|
| 128 | + $fileName = PLUGINS_DIR.implode(DIRECTORY_SEPARATOR, $classPath).'.php'; |
|
| 129 | 129 | if (file_exists($fileName)) { |
| 130 | 130 | include_once $fileName; |
| 131 | 131 | } |
@@ -159,7 +159,7 @@ |
||
| 159 | 159 | { |
| 160 | 160 | $config = Registry::get('Phile_Settings'); |
| 161 | 161 | |
| 162 | - return md5($config['encryptionKey'] . $value); |
|
| 162 | + return md5($config['encryptionKey'].$value); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -119,7 +119,7 @@ |
||
| 119 | 119 | public function send() |
| 120 | 120 | { |
| 121 | 121 | if (!isset($this->headers['Content-Type'])) { |
| 122 | - $this->setHeader('Content-Type', 'text/html; charset=' . $this->charset); |
|
| 122 | + $this->setHeader('Content-Type', 'text/html; charset='.$this->charset); |
|
| 123 | 123 | } |
| 124 | 124 | $this->outputHeader(); |
| 125 | 125 | http_response_code($this->statusCode); |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | if (isset($this->server['HTTP_HOST'])) { |
| 84 | 84 | $host = $this->server['HTTP_HOST']; |
| 85 | 85 | $protocol = $this->getProtocol(); |
| 86 | - $url = $protocol . '://' . $host . $url; |
|
| 86 | + $url = $protocol.'://'.$host.$url; |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | $url = rtrim($url, '/'); |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | public function url($url) |
| 120 | 120 | { |
| 121 | - return $this->getBaseUrl() . '/' . ltrim($url, '/'); |
|
| 121 | + return $this->getBaseUrl().'/'.ltrim($url, '/'); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | * @package Phile |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -require_once __DIR__ . '/lib/Phile/Bootstrap.php'; |
|
| 9 | +require_once __DIR__.'/lib/Phile/Bootstrap.php'; |
|
| 10 | 10 | |
| 11 | 11 | ob_start(); |
| 12 | 12 | |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | * @deprecated since 2015-05-01, file will be removed |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -require_once __DIR__ . '/lib/Phile/Bootstrap.php'; |
|
| 14 | +require_once __DIR__.'/lib/Phile/Bootstrap.php'; |
|
| 15 | 15 | |
| 16 | 16 | Bootstrap::getInstance()->initializeBasics(); |
| 17 | 17 | |