diff --git a/composer.lock b/composer.lock
index 8c1f8a996..c9bb7e2b3 100644
--- a/composer.lock
+++ b/composer.lock
@@ -688,16 +688,16 @@
},
{
"name": "sentry/sentry",
- "version": "4.3.0",
+ "version": "4.3.1",
"source": {
"type": "git",
"url": "https://github.com/getsentry/sentry-php.git",
- "reference": "7e71a72baa2c7439507d868487bb36226a8a4e0c"
+ "reference": "cd89f230bda0833cb9992ebe9a1b7d24d6ee245b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/7e71a72baa2c7439507d868487bb36226a8a4e0c",
- "reference": "7e71a72baa2c7439507d868487bb36226a8a4e0c",
+ "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/cd89f230bda0833cb9992ebe9a1b7d24d6ee245b",
+ "reference": "cd89f230bda0833cb9992ebe9a1b7d24d6ee245b",
"shasum": ""
},
"require": {
@@ -761,7 +761,7 @@
],
"support": {
"issues": "https://github.com/getsentry/sentry-php/issues",
- "source": "https://github.com/getsentry/sentry-php/tree/4.3.0"
+ "source": "https://github.com/getsentry/sentry-php/tree/4.3.1"
},
"funding": [
{
@@ -773,7 +773,7 @@
"type": "custom"
}
],
- "time": "2023-12-21T16:39:28+00:00"
+ "time": "2023-12-22T18:46:49+00:00"
},
{
"name": "symfony/browser-kit",
diff --git a/gatherling/admin/updateDecks.php b/gatherling/admin/updateDecks.php
index 0de188535..c57ee0ceb 100644
--- a/gatherling/admin/updateDecks.php
+++ b/gatherling/admin/updateDecks.php
@@ -38,7 +38,7 @@
$stmt->execute() or exit($stmt->error);
echo ''.$deck->name.' Deck ID: '.$deck->id.' Sucessfully updated
';
$successUpdatedDecks++;
- //if ($decksChecked > 10) { die; }
+ //if ($decksChecked > 10) { die; }
} else {
echo $deck->id.' Has no data in entries, missing playername, no player association. Deck will be deleted
';
$failedUpdatedDecks++;
diff --git a/gatherling/authdebug.php b/gatherling/authdebug.php
index b7d1821cc..247503f11 100644
--- a/gatherling/authdebug.php
+++ b/gatherling/authdebug.php
@@ -24,7 +24,7 @@
} elseif (!isset($_GET['code'])) {
send_to_discord();
- // Check given state against previously stored one to mitigate CSRF attack
+// Check given state against previously stored one to mitigate CSRF attack
} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {
unset($_SESSION['oauth2state']);
exit('Invalid state');
diff --git a/gatherling/models/Format.php b/gatherling/models/Format.php
index 69a8e5d14..bbbc7a90d 100644
--- a/gatherling/models/Format.php
+++ b/gatherling/models/Format.php
@@ -988,8 +988,8 @@ public function getTribe($deckID)
asort($tribesTied); // sorts tribe size by value from low to high for tie breaker
reset($tribesTied);
$underdogKey = key($tribesTied);
- // get first key, which should be lowest from sort
- // Smallest Tribe is then selected
+ // get first key, which should be lowest from sort
+ // Smallest Tribe is then selected
} else {
reset($subTypeCount);
$underdogKey = key($subTypeCount); // get first key, which should highest from sort
@@ -1080,8 +1080,8 @@ public function getTribe($deckID)
asort($tribesTied); // sorts tribe size by value from low to high for tie breaker
reset($tribesTied);
$tribeKey = key($tribesTied);
- // get first key, which should be lowest from sort
- // Smallest Tribe is then selected
+ // get first key, which should be lowest from sort
+ // Smallest Tribe is then selected
} else {
reset($subTypeCount);
$tribeKey = key($subTypeCount); // get first key, which should highest from sort
diff --git a/gatherling/models/Pagination.php b/gatherling/models/Pagination.php
index 828a6ec68..eba1cf6a7 100644
--- a/gatherling/models/Pagination.php
+++ b/gatherling/models/Pagination.php
@@ -536,7 +536,7 @@ public function render($return_output = false)
$output .= $this->_show_next().$this->_show_pages().$this->_show_previous();
}
- // if we're showing records in natural order
+ // if we're showing records in natural order
} else {
// if "next page" and "previous page" links are to be shown to the left of the links to individual pages
if ($this->_properties['navigation_position'] == 'left') {
@@ -721,8 +721,8 @@ private function _build_uri($page)
$this->_properties['base_url']
));
- // if the current page is not yet in the URL, set it, unless we're on the first page
- // case in which we don't set it in order to avoid duplicate content
+ // if the current page is not yet in the URL, set it, unless we're on the first page
+ // case in which we don't set it in order to avoid duplicate content
} else {
$url = rtrim($this->_properties['base_url'], '/').'/'.($this->_properties['variable_name'].$page);
}
@@ -744,7 +744,7 @@ private function _build_uri($page)
// return the built string also appending the query string, if any
return $url.($query != '' ? '?'.$query : '');
- // if page propagation is to be done through GET
+ // if page propagation is to be done through GET
} else {
// if values in the query string - other than those set through base_url() - are not to be preserved
// preserve only those set initially
@@ -834,7 +834,7 @@ private function _show_pages()
'';
}
- // if the total number of pages is greater than the number of selectable pages
+ // if the total number of pages is greater than the number of selectable pages
} else {
// start with a link to the first or last page, depending if we're displaying links in reverse order or not
$output .= '