summaryrefslogtreecommitdiff
path: root/classes/Db_Migrations.php
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2024-11-23 18:23:49 +0000
committerwn_ <invalid@email.com>2024-11-24 13:59:29 +0000
commit667528d5b927f0f284a067b0e24c9ca7f26c28a4 (patch)
treef28c7ece3584a7852b6562020246b1de6167774e /classes/Db_Migrations.php
parent53fee911e6a39a5c8504d03d1f114a131d00784c (diff)
Use PHP 8 'str_' functions.
A few more characters in some places, but helps with readability.
Diffstat (limited to 'classes/Db_Migrations.php')
-rw-r--r--classes/Db_Migrations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Db_Migrations.php b/classes/Db_Migrations.php
index c2a8c326d..7dcfc24b1 100644
--- a/classes/Db_Migrations.php
+++ b/classes/Db_Migrations.php
@@ -190,7 +190,7 @@ class Db_Migrations {
if (file_exists($filename)) {
$lines = array_filter(preg_split("/[\r\n]/", file_get_contents($filename)),
- fn($line) => strlen(trim($line)) > 0 && strpos($line, "--") !== 0);
+ fn($line) => strlen(trim($line)) > 0 && !str_starts_with($line, "--"));
return array_filter(explode(";", implode("", $lines)),
fn($line) => strlen(trim($line)) > 0 && !in_array(strtolower($line), ["begin", "commit"]));