@@ -8,7 +8,7 @@ |
||
8 | 8 | * @global string LOGFILE_NAME |
9 | 9 | */ |
10 | 10 | |
11 | -if($app['debug'] == true) { |
|
11 | +if ($app['debug'] == true) { |
|
12 | 12 | $app->register(new Silex\Provider\MonologServiceProvider(), array( |
13 | 13 | 'monolog.logfile' => __DIR__ . '/logs/' . LOGFILE_NAME, |
14 | 14 | )); |
@@ -16,7 +16,7 @@ |
||
16 | 16 | public function GenerateSaltForUrl() { |
17 | 17 | $salt = $this->GenerateSalt(); |
18 | 18 | |
19 | - while(strpos($salt, '/') != 0) { |
|
19 | + while (strpos($salt, '/') != 0) { |
|
20 | 20 | $salt = $this->GenerateSalt(); |
21 | 21 | } |
22 | 22 |