summaryrefslogtreecommitdiff
path: root/admin/schema_inc.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-14 09:51:41 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-14 09:51:41 +0100
commitad1b97a383f7cb0d82f31cd74b6e9349930803db (patch)
tree279ad33d9d61865ed312b7ac09500d34341107c3 /admin/schema_inc.php
parentb80134b41f951406f6de65917b4331ee5d31138c (diff)
downloadpigeonholes-ad1b97a383f7cb0d82f31cd74b6e9349930803db.tar.gz
pigeonholes-ad1b97a383f7cb0d82f31cd74b6e9349930803db.tar.bz2
pigeonholes-ad1b97a383f7cb0d82f31cd74b6e9349930803db.zip
php-cs-fixer tidies to php8.5 standards
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'admin/schema_inc.php')
-rwxr-xr-xadmin/schema_inc.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index 48dae8c..6c0d815 100755
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -13,7 +13,7 @@ $tables = [
CONSTRAINT '
, CONSTRAINT `pigeonhole_members_parent_ref` FOREIGN KEY (`parent_id`) REFERENCES `".BIT_DB_PREFIX."liberty_content`( `content_id` )
, CONSTRAINT `pigeonhole_members_content_ref` FOREIGN KEY (`content_id`) REFERENCES `".BIT_DB_PREFIX."liberty_content`( `content_id` )'
- "
+ ",
];
global $gBitInstaller;
@@ -29,7 +29,7 @@ $gBitInstaller->registerPackageInfo( PIGEONHOLES_PKG_NAME, [
// ### Sequences
$sequences = [
- 'pigeonholes_id_seq' => [ 'start' => 1 ]
+ 'pigeonholes_id_seq' => [ 'start' => 1 ],
];
$gBitInstaller->registerSchemaSequences( PIGEONHOLES_PKG_NAME, $sequences );
@@ -52,6 +52,6 @@ $gBitInstaller->registerUserPermissions( PIGEONHOLES_PKG_NAME, [
// Requirements
$gBitInstaller->registerRequirements( PIGEONHOLES_PKG_NAME, [
- 'liberty' => [ 'min' => '5.0.0' ],
+ 'liberty' => [ 'min' => '5.0.0' ],
] );