Completed
Push — master ( 06ade8...5dbfe3 )
by Patrick
02:29
created
class.FlipPage.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -727,7 +727,7 @@
 block discarded – undo
727 727
      */
728 728
     private function addJSGlobals()
729 729
     {
730
-      $this->body = $this->body.'<script>
730
+        $this->body = $this->body.'<script>
731 731
 var profilesUrl = \''.$this->profilesUrl.'\'
732 732
 var loginUrl = \''.$this->loginUrl.'\'
733 733
 var logoutUrl = \''.$this->logoutUrl.'\'
Please login to merge, or discard this patch.
Log/class.LogService.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,11 @@
 block discarded – undo
27 27
     {
28 28
         // build a replacement array with braces around the context keys
29 29
         $replace = array();
30
-        foreach ($context as $key => $val) {
30
+        foreach ($context as $key => $val)
31
+        {
31 32
             // check that the value can be casted to string
32
-            if (!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) {
33
+            if (!is_array($val) && (!is_object($val) || method_exists($val, '__toString')))
34
+            {
33 35
                 $replace['{' . $key . '}'] = $val;
34 36
             }
35 37
         }
Please login to merge, or discard this patch.
Http/Rest/class.DataTableAPI.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
92 92
         $params = $this->manipulateParameters($request, $odata);
93 93
         $areas = $dataTable->read($odata->filter, $odata->select, $odata->top,
94
-                                  $odata->skip, $odata->orderby, $params);
94
+                                    $odata->skip, $odata->orderby, $params);
95 95
         if($areas === false)
96 96
         {
97 97
             $areas = array();
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
134 134
         $filter = $this->getFilterForPrimaryKey($args['name']);
135 135
         $areas = $dataTable->read($filter, $odata->select, $odata->top,
136
-                                  $odata->skip, $odata->orderby);
136
+                                    $odata->skip, $odata->orderby);
137 137
         if(empty($areas))
138 138
         {
139 139
             return $response->withStatus(404);
Please login to merge, or discard this patch.
Http/class.WebSite.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,9 @@  discard block
 block discarded – undo
13 13
         $settings = array("settings"=>["determineRouteBeforeAppMiddleware"=>true]);
14 14
         parent::__construct($settings);
15 15
         $c = $this->getContainer();
16
-        $c['errorHandler'] = function($c) { return new WebErrorHandler();};
16
+        $c['errorHandler'] = function($c)
17
+        {
18
+return new WebErrorHandler();};
17 19
         $this->add(new AuthMiddleware());
18 20
         $this->add(new ODataMiddleware());
19 21
     }
@@ -25,7 +27,9 @@  discard block
 block discarded – undo
25 27
 
26 28
     public function registerAPI($uri, $api)
27 29
     {
28
-        $group = $this->group($uri, function() use($api){$api->setup($this);});
30
+        $group = $this->group($uri, function() use($api)
31
+        {
32
+$api->setup($this);});
29 33
         $group->add(new \Http\Rest\SerializationMiddleware());
30 34
         $group->add(new \Http\Rest\CORSMiddleware($this->getContainer()));
31 35
     }
Please login to merge, or discard this patch.
Http/class.WebErrorHandler.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,5 +13,5 @@
 block discarded – undo
13 13
             ->withStatus(500)
14 14
             ->withHeader('Content-Type', 'text/html')
15 15
             ->write($exception->__toString());
16
-   }
16
+    }
17 17
 }
Please login to merge, or discard this patch.
Email/class.AmazonSES.php 1 patch
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,10 +42,13 @@  discard block
 block discarded – undo
42 42
             $args = array();
43 43
             $args['RawMessage'] = array();
44 44
             $args['RawMessage']['Data'] = $email->getRawMessage();
45
-            try {
45
+            try
46
+            {
46 47
                 $res = $this->ses->sendRawEmail($args);
47 48
                 return $res;
48
-            } catch(\Exception $e) {
49
+            }
50
+            catch(\Exception $e)
51
+            {
49 52
                 return false;
50 53
             }
51 54
         }
@@ -66,9 +69,12 @@  discard block
 block discarded – undo
66 69
             $args['Message']['Body']['Text']['Data'] = $email->getTextBody();
67 70
             $args['Message']['Body']['Html']['Data'] = $email->getHtmlBody();
68 71
             $args['ReplyToAddresses'] = array($email->getReplyTo());
69
-            try {
72
+            try
73
+            {
70 74
                 return $this->ses->sendEmail($args);
71
-            } catch(\Exception $e) {
75
+            }
76
+            catch(\Exception $e)
77
+            {
72 78
                 return false;
73 79
             }
74 80
         }
Please login to merge, or discard this patch.