@@ -400,15 +400,15 @@ |
||
400 | 400 | foreach ($finder as $content) { |
401 | 401 | $permission = $content->getPerms(); |
402 | 402 | // see also http://www.php.net/fileperms |
403 | - if (!($permission & 0x0010) || !($permission & 0x0002)) { |
|
403 | + if (!($permission&0x0010) || !($permission&0x0002)) { |
|
404 | 404 | $realPath = $content->getRealPath(); |
405 | 405 | if ($verbose) { |
406 | 406 | out(sprintf('%s %s to ', $realPath, substr(sprintf('%o', $permission), -4)), 'info', false); |
407 | 407 | } |
408 | - $permission = !($permission & 0x0020) ? $permission += 040 : $permission; // g+r |
|
409 | - $permission = !($permission & 0x0010) ? $permission += 020 : $permission; // g+w |
|
410 | - $permission = !($permission & 0x0004) ? $permission += 04 : $permission; // o+r |
|
411 | - $permission = !($permission & 0x0002) ? $permission += 02 : $permission; // o+w |
|
408 | + $permission = !($permission&0x0020) ? $permission += 040 : $permission; // g+r |
|
409 | + $permission = !($permission&0x0010) ? $permission += 020 : $permission; // g+w |
|
410 | + $permission = !($permission&0x0004) ? $permission += 04 : $permission; // o+r |
|
411 | + $permission = !($permission&0x0002) ? $permission += 02 : $permission; // o+w |
|
412 | 412 | $result = chmod($realPath, $permission); |
413 | 413 | if ($verbose) { |
414 | 414 | if ($result) { |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | } else { |
96 | 96 | // httpから変更されたらfalseのまま |
97 | 97 | $config['force_ssl'] = Constant::DISABLED; |
98 | - $data['force_ssl'] = (bool)Constant::DISABLED; |
|
98 | + $data['force_ssl'] = (bool) Constant::DISABLED; |
|
99 | 99 | } |
100 | 100 | } else { |
101 | 101 | $config['force_ssl'] = Constant::DISABLED; |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | if (count($allowHost) > 0) { |
141 | 141 | $form->get('admin_allow_hosts')->setData(Str::convertLineFeed(implode("\n", $allowHost))); |
142 | 142 | } |
143 | - $form->get('force_ssl')->setData((bool)$this->appConfig['force_ssl']); |
|
143 | + $form->get('force_ssl')->setData((bool) $this->appConfig['force_ssl']); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | return [ |
@@ -214,7 +214,7 @@ |
||
214 | 214 | |
215 | 215 | // ロードバランサ, プロキシサーバ |
216 | 216 | if (!empty($config['trusted_proxies_connection_only'])) { |
217 | - $sessionData['trusted_proxies_connection_only'] = (bool)$config['trusted_proxies_connection_only']; |
|
217 | + $sessionData['trusted_proxies_connection_only'] = (bool) $config['trusted_proxies_connection_only']; |
|
218 | 218 | } |
219 | 219 | if (!empty($config['trusted_proxies'])) { |
220 | 220 | $sessionData['trusted_proxies'] = Str::convertLineFeed(implode("\n", |
@@ -92,19 +92,19 @@ |
||
92 | 92 | 'label' => 'SSLを強制', |
93 | 93 | 'required' => false, |
94 | 94 | )) |
95 | - ->addEventListener(FormEvents::POST_SUBMIT, function ($event) use($app) { |
|
95 | + ->addEventListener(FormEvents::POST_SUBMIT, function($event) use($app) { |
|
96 | 96 | $form = $event->getForm(); |
97 | 97 | $data = $form->getData(); |
98 | 98 | |
99 | 99 | $ips = preg_split("/\R/", $data['admin_allow_hosts'], null, PREG_SPLIT_NO_EMPTY); |
100 | 100 | |
101 | - foreach($ips as $ip) { |
|
101 | + foreach ($ips as $ip) { |
|
102 | 102 | $errors = $this->recursiveValidator->validate($ip, array( |
103 | 103 | new Assert\Ip(), |
104 | 104 | ) |
105 | 105 | ); |
106 | 106 | if ($errors->count() != 0) { |
107 | - $form['admin_allow_hosts']->addError(new FormError($ip . 'はIPv4アドレスではありません。')); |
|
107 | + $form['admin_allow_hosts']->addError(new FormError($ip.'はIPv4アドレスではありません。')); |
|
108 | 108 | } |
109 | 109 | } |
110 | 110 | }) |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php return [ |
2 | 2 | 'root_dir' => '%ROOT_DIR%', |
3 | 3 | 'root_urlpath' => env('ROOT_URLPATH', null), |
4 | - 'template_code' => env('TEMPLATE_CODE','default'), |
|
5 | - 'admin_route' => env('ADMIN_ROUTE','admin'), |
|
4 | + 'template_code' => env('TEMPLATE_CODE', 'default'), |
|
5 | + 'admin_route' => env('ADMIN_ROUTE', 'admin'), |
|
6 | 6 | 'user_data_route' => env('USER_DATA_ROUTE', 'user_data'), |
7 | 7 | 'public_path' => '/html', |
8 | 8 | 'public_path_realdir' => '%ROOT_DIR%/html', |
@@ -26,7 +26,7 @@ |
||
26 | 26 | apc_clear_cache(); |
27 | 27 | } |
28 | 28 | |
29 | -require __DIR__ . '/autoload.php'; |
|
29 | +require __DIR__.'/autoload.php'; |
|
30 | 30 | |
31 | 31 | set_time_limit(0); |
32 | 32 | ini_set('memory_limit', -1); |