Passed
Pull Request — master (#47)
by Matthew
06:12
created
api/config/_log.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
   ));
Please login to merge, or discard this patch.
api/config/Security/SaltService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.