summaryrefslogtreecommitdiff
path: root/admin
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
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')
-rwxr-xr-xadmin/admin_pigeonholes_inc.php2
-rwxr-xr-xadmin/schema_inc.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/admin/admin_pigeonholes_inc.php b/admin/admin_pigeonholes_inc.php
index 48087a0..9313f23 100755
--- a/admin/admin_pigeonholes_inc.php
+++ b/admin/admin_pigeonholes_inc.php
@@ -52,7 +52,7 @@ $pigeonholeEditSettings = [
],
'pigeonholes_allow_forbid_insertion' => [
'label' => 'Allow Forbid Insertion',
- 'note' => 'Allows pigeonholes to be set to forbid insertion of new members. This is good for heirarchical categories where only leaf categories should have members.'
+ 'note' => 'Allows pigeonholes to be set to forbid insertion of new members. This is good for heirarchical categories where only leaf categories should have members.',
],
];
$gBitSmarty->assign( 'pigeonholeEditSettings', $pigeonholeEditSettings );
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' ],
] );