Skip to content

Commit

Permalink
Fix: Using CamelCase files to fix autoload (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
KingYes authored Jan 21, 2025
1 parent 25fe3ce commit 2367bf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<exclude name="Squiz.PHP.EmbeddedPhp.ContentAfterOpen" />
<exclude name="Squiz.PHP.EmbeddedPhp.ContentBeforeEnd" />
<exclude name="Squiz.PHP.EmbeddedPhp.ContentAfterEnd" />
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
<exclude name="WordPress.Arrays.MultipleStatementAlignment" />
<exclude name="WordPress.CSRF.NonceVerification.NoNonceVerification" />
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
Expand Down
4 changes: 2 additions & 2 deletions src/v100/notifications.php → src/V110/Notifications.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
namespace Elementor\WPNotificationsPackage\V100;
namespace Elementor\WPNotificationsPackage\V110;

if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}

class Notifications {

const PACKAGE_VERSION = '1.0.0';
const PACKAGE_VERSION = '1.1.0';

private string $app_name;

Expand Down

0 comments on commit 2367bf2

Please sign in to comment.