@@ -1,3 +1,3 @@ |
||
1 | 1 | <?php |
2 | -require_once (dirname(dirname(__FILE__)) . '/blendmigrations.class.php'); |
|
2 | +require_once (dirname(dirname(__FILE__)).'/blendmigrations.class.php'); |
|
3 | 3 | class BlendMigrations_mysql extends BlendMigrations {} |
4 | 4 | \ No newline at end of file |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | $xpdo_meta_map = array ( |
4 | - 'xPDOSimpleObject' => |
|
5 | - array ( |
|
4 | + 'xPDOSimpleObject' => |
|
5 | + array ( |
|
6 | 6 | 0 => 'BlendMigrations', |
7 | - ), |
|
7 | + ), |
|
8 | 8 | ); |
9 | 9 | \ No newline at end of file |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -$xpdo_meta_map = array ( |
|
3 | +$xpdo_meta_map = array( |
|
4 | 4 | 'xPDOSimpleObject' => |
5 | - array ( |
|
5 | + array( |
|
6 | 6 | 0 => 'BlendMigrations', |
7 | 7 | ), |
8 | 8 | ); |
9 | 9 | \ No newline at end of file |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | -$xpdo_meta_map = array ( |
|
2 | +$xpdo_meta_map = array( |
|
3 | 3 | 'version' => '3.0', |
4 | 4 | 'namespace' => 'LCI\\Blend\\Model\\xPDO', |
5 | 5 | 'class_map' => |
6 | - array ( |
|
6 | + array( |
|
7 | 7 | 'xPDO\\Om\\xPDOSimpleObject' => |
8 | - array ( |
|
8 | + array( |
|
9 | 9 | 0 => 'LCI\\Blend\\Model\\xPDO\\BlendMigrations', |
10 | 10 | ), |
11 | 11 | ), |
@@ -74,13 +74,13 @@ discard block |
||
74 | 74 | ); |
75 | 75 | |
76 | 76 | // Try to look for a file with the API Key from a file within the gitify working directory |
77 | - if (!empty($provider_data['api_key']) && file_exists(MODX_PATH . '/' . $provider_data['api_key'])) { |
|
78 | - $credentials['api_key'] = trim(file_get_contents(MODX_PATH . '/' . $provider_data['api_key'])); |
|
77 | + if (!empty($provider_data['api_key']) && file_exists(MODX_PATH.'/'.$provider_data['api_key'])) { |
|
78 | + $credentials['api_key'] = trim(file_get_contents(MODX_PATH.'/'.$provider_data['api_key'])); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | // load provider credentials from file |
82 | - if (!empty($provider_data['credential_file']) && file_exists(MODX_PATH . '/' . $provider_data['credential_file'])) { |
|
83 | - $credentials_content = trim(file_get_contents(MODX_PATH . '/' . $provider_data['credential_file'])); |
|
82 | + if (!empty($provider_data['credential_file']) && file_exists(MODX_PATH.'/'.$provider_data['credential_file'])) { |
|
83 | + $credentials_content = trim(file_get_contents(MODX_PATH.'/'.$provider_data['credential_file'])); |
|
84 | 84 | $credentials = Gitify::fromYAML($credentials_content); |
85 | 85 | } |
86 | 86 | |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | private function install($package, $provider = 0, array $installOptions = array()) |
124 | 124 | { |
125 | - $this->modx->addPackage('modx.transport', MODX_CORE_PATH . 'model/'); |
|
125 | + $this->modx->addPackage('modx.transport', MODX_CORE_PATH.'model/'); |
|
126 | 126 | |
127 | 127 | if (!($provider instanceof \modTransportProvider) && is_numeric($provider) && $provider > 0) |
128 | 128 | { |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | */ |
163 | 163 | private function download($packageName, $provider, $options = array()) { |
164 | 164 | $this->modx->getVersionData(); |
165 | - $product_version = $this->modx->version['code_name'] . '-' . $this->modx->version['full_version']; |
|
165 | + $product_version = $this->modx->version['code_name'].'-'.$this->modx->version['full_version']; |
|
166 | 166 | |
167 | 167 | $response = $provider->verify(); |
168 | 168 | if ($response !== true) { |
@@ -189,13 +189,13 @@ discard block |
||
189 | 189 | // when we got a match (non 404), extract package information |
190 | 190 | if (!$response->isError()) { |
191 | 191 | |
192 | - $foundPkg = simplexml_load_string ( $response->response ); |
|
192 | + $foundPkg = simplexml_load_string($response->response); |
|
193 | 193 | |
194 | - $packages [strtolower((string) $foundPkg->name)] = array ( |
|
195 | - 'name' => (string) $foundPkg->name, |
|
196 | - 'version' => (string) $foundPkg->version, |
|
197 | - 'location' => (string) $foundPkg->location, |
|
198 | - 'signature' => (string) $foundPkg->signature |
|
194 | + $packages [strtolower((string)$foundPkg->name)] = array( |
|
195 | + 'name' => (string)$foundPkg->name, |
|
196 | + 'version' => (string)$foundPkg->version, |
|
197 | + 'location' => (string)$foundPkg->location, |
|
198 | + 'signature' => (string)$foundPkg->signature |
|
199 | 199 | ); |
200 | 200 | } |
201 | 201 | |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | // process found packages |
230 | 230 | if (!empty($packages)) { |
231 | 231 | |
232 | - $this->output->writeln('Found ' . count($packages) . ' package(s).'); |
|
232 | + $this->output->writeln('Found '.count($packages).' package(s).'); |
|
233 | 233 | |
234 | 234 | $helper = $this->getHelper('question'); |
235 | 235 |
@@ -244,8 +244,7 @@ |
||
244 | 244 | |
245 | 245 | if ($this->interactive) { |
246 | 246 | continue; |
247 | - } |
|
248 | - else { |
|
247 | + } else { |
|
249 | 248 | return true; |
250 | 249 | } |
251 | 250 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $this->results[] = $message; |
119 | 119 | // now cache it: |
120 | 120 | |
121 | - $simpleCache = new SimpleCache(BLEND_CACHE_DIR . 'modx/'); |
|
121 | + $simpleCache = new SimpleCache(BLEND_CACHE_DIR.'modx/'); |
|
122 | 122 | $simpleCache->set($this->getSeedsDir().'-'.$this->method, $this->results); |
123 | 123 | } |
124 | 124 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | { |
130 | 130 | $key = 'install-config-v'.str_replace(['.', '-'], '_', $this->version).'_install'; |
131 | 131 | |
132 | - $simpleCache = new SimpleCache(BLEND_CACHE_DIR . 'modx/'); |
|
132 | + $simpleCache = new SimpleCache(BLEND_CACHE_DIR.'modx/'); |
|
133 | 133 | $this->install_config = $simpleCache->get($key); |
134 | 134 | } |
135 | 135 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * @param mixed |
139 | 139 | * @return bool|mixed |
140 | 140 | */ |
141 | - protected function getUserInstallConfigValue($key, $default=false) |
|
141 | + protected function getUserInstallConfigValue($key, $default = false) |
|
142 | 142 | { |
143 | 143 | if (isset($this->install_config[$key])) { |
144 | 144 | return $this->install_config[$key]; |
@@ -152,6 +152,6 @@ discard block |
||
152 | 152 | */ |
153 | 153 | protected function loadCurrentVersionInfo() |
154 | 154 | { |
155 | - $this->current_version = include MODX_CORE_PATH . 'docs/version.inc.php'; |
|
155 | + $this->current_version = include MODX_CORE_PATH.'docs/version.inc.php'; |
|
156 | 156 | } |
157 | 157 | } |
158 | 158 | \ No newline at end of file |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | $event = $this->modx->newObject('modEvent'); |
138 | 138 | $event->set('name', $event_name); |
139 | 139 | $event->set('service', 1); |
140 | - $event->set('groupname', 'Resources');// ?? |
|
140 | + $event->set('groupname', 'Resources'); // ?? |
|
141 | 141 | |
142 | 142 | if ($event->save()) { |
143 | 143 | $this->blender->out($event_name.' event has been installed'); |
@@ -156,12 +156,12 @@ discard block |
||
156 | 156 | $event = $this->modx->getObject('modEvent', ['name' => $event_name]); |
157 | 157 | if (is_object($event)) { |
158 | 158 | if ($event->remove()) { |
159 | - $this->blender->out($event_name . ' event was removed', true); |
|
159 | + $this->blender->out($event_name.' event was removed', true); |
|
160 | 160 | } else { |
161 | - $this->blender->out($event_name . ' event was not removed', true); |
|
161 | + $this->blender->out($event_name.' event was not removed', true); |
|
162 | 162 | } |
163 | 163 | } else { |
164 | - $this->blender->out($event_name . ' event has already been removed', true); |
|
164 | + $this->blender->out($event_name.' event has already been removed', true); |
|
165 | 165 | } |
166 | 166 | } |
167 | 167 |
@@ -410,7 +410,7 @@ |
||
410 | 410 | else { |
411 | 411 | try { |
412 | 412 | $write = file_put_contents($this->migrations_path.$class_name.'.php', $file_contents); |
413 | - $this->log_data = [ |
|
413 | + $this->log_data = [ |
|
414 | 414 | 'name' => $class_name, |
415 | 415 | 'type' => $this->getServerType(), |
416 | 416 | 'description' => $this->getDescription(), |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | */ |
97 | 97 | public function setMigrationsPath($path, $append = false) |
98 | 98 | { |
99 | - $this->migrations_path = rtrim($path, '\/\\') . DIRECTORY_SEPARATOR; |
|
99 | + $this->migrations_path = rtrim($path, '\/\\').DIRECTORY_SEPARATOR; |
|
100 | 100 | |
101 | 101 | if (file_exists($path) && $append) { |
102 | 102 | if (!file_exists($path.'database')) { |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function setSeedsPath($path, $append = false) |
124 | 124 | { |
125 | - $this->seeds_path = rtrim($path, '\/\\') . DIRECTORY_SEPARATOR; |
|
125 | + $this->seeds_path = rtrim($path, '\/\\').DIRECTORY_SEPARATOR; |
|
126 | 126 | |
127 | 127 | if (file_exists($path) && $append) { |
128 | 128 | if (!file_exists($path.'database')) { |
@@ -460,7 +460,7 @@ discard block |
||
460 | 460 | * @param int $verbose |
461 | 461 | * @param bool $error |
462 | 462 | */ |
463 | - public function out($message, $verbose=Blender::VERBOSITY_NORMAL, $error = false) |
|
463 | + public function out($message, $verbose = Blender::VERBOSITY_NORMAL, $error = false) |
|
464 | 464 | { |
465 | 465 | if ($this->getVerbose() >= $verbose) { |
466 | 466 | if ($error) { |
@@ -475,7 +475,7 @@ discard block |
||
475 | 475 | * @param string $message |
476 | 476 | * @param int $verbose |
477 | 477 | */ |
478 | - public function outError($message, $verbose=Blender::VERBOSITY_NORMAL) |
|
478 | + public function outError($message, $verbose = Blender::VERBOSITY_NORMAL) |
|
479 | 479 | { |
480 | 480 | if ($this->getVerbose() >= $verbose) { |
481 | 481 | $this->userInteractionHandler->tellUser($message, userInteractionHandler::MASSAGE_ERROR); |
@@ -73,7 +73,7 @@ |
||
73 | 73 | if (defined('MODX_CORE_PATH')) { |
74 | 74 | $path = MODX_CORE_PATH; |
75 | 75 | } else { |
76 | - $path = dirname(dirname(dirname(dirname(__DIR__)))) . DIRECTORY_SEPARATOR; |
|
76 | + $path = dirname(dirname(dirname(dirname(__DIR__)))).DIRECTORY_SEPARATOR; |
|
77 | 77 | } |
78 | 78 | $path .= 'components/'; |
79 | 79 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | |
16 | 16 | class Application extends ConsoleApplication |
17 | 17 | { |
18 | - protected static $logo = __DIR__ . '/art/blend.txt'; |
|
18 | + protected static $logo = __DIR__.'/art/blend.txt'; |
|
19 | 19 | |
20 | 20 | protected static $name = 'Blend Console'; |
21 | 21 |