Completed
Push — master ( 6e2ce7...aa8ddd )
by Michael
02:58
created
www/index.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,7 @@
 block discarded – undo
25 25
 {
26 26
 	$app = $container->get(Application::class);
27 27
 	$app->execute();
28
-}
29
-catch (\Exception $e)
28
+} catch (\Exception $e)
30 29
 {
31 30
 	if (!headers_sent())
32 31
 	{
Please login to merge, or discard this patch.
src/Controllers/DisplayControllerGet.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,15 +72,13 @@
 block discarded – undo
72 72
 			if ($this->cache->contains($key))
73 73
 			{
74 74
 				$body = $this->cache->fetch($key);
75
-			}
76
-			else
75
+			} else
77 76
 			{
78 77
 				$body = $this->view->render();
79 78
 
80 79
 				$this->cache->save($key, $body, $this->getApplication()->get('cache.lifetime', 900));
81 80
 			}
82
-		}
83
-		else
81
+		} else
84 82
 		{
85 83
 			$body = $this->view->render();
86 84
 		}
Please login to merge, or discard this patch.
src/Models/StatsModel.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
 			);
54 54
 
55 55
 			yield $db->loadAssocList();
56
-		}
57
-		else
56
+		} else
58 57
 		{
59 58
 			// If fetching all data from the table, we need to break this down a fair bit otherwise we're going to run out of memory
60 59
 			$totalRecords = $db->setQuery(
@@ -80,8 +79,7 @@  discard block
 block discarded – undo
80 79
 					$query->setLimit($this->batchSize, $offset);
81 80
 
82 81
 					$db->setQuery($query);
83
-				}
84
-				else
82
+				} else
85 83
 				{
86 84
 					$db->setQuery($query, $offset, $this->batchSize);
87 85
 				}
@@ -126,8 +124,7 @@  discard block
 block discarded – undo
126 124
 		if ($recordExists)
127 125
 		{
128 126
 			$db->updateObject('#__jstats', $data, ['unique_id']);
129
-		}
130
-		else
127
+		} else
131 128
 		{
132 129
 			$db->insertObject('#__jstats', $data, ['unique_id']);
133 130
 		}
Please login to merge, or discard this patch.
src/Views/Stats/StatsJsonView.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -105,8 +105,7 @@  discard block
 block discarded – undo
105 105
 							}
106 106
 
107 107
 							${$source}['unknown']++;
108
-						}
109
-						else
108
+						} else
110 109
 						{
111 110
 							if (!isset(${$source}[$item[$source]]))
112 111
 							{
@@ -224,8 +223,7 @@  discard block
 block discarded – undo
224 223
 							}
225 224
 
226 225
 							$data[$source]['unknown']++;
227
-						}
228
-						else
226
+						} else
229 227
 						{
230 228
 							if (!isset($data[$source][$item[$source]]))
231 229
 							{
Please login to merge, or discard this patch.
src/WebApplication.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
 			try
62 62
 			{
63 63
 				$this->analytics->sendPageview();
64
-			}
65
-			catch (\Exception $e)
64
+			} catch (\Exception $e)
66 65
 			{
67 66
 				// Log the error for reference
68 67
 				$this->getLogger()->error(
@@ -75,8 +74,7 @@  discard block
 block discarded – undo
75 74
 		try
76 75
 		{
77 76
 			$this->router->getController($this->get('uri.route'))->execute();
78
-		}
79
-		catch (\Exception $e)
77
+		} catch (\Exception $e)
80 78
 		{
81 79
 			// Log the error for reference
82 80
 			$this->getLogger()->error(
Please login to merge, or discard this patch.