Skip to content

Commit

Permalink
Fixing issues mentioned in the CR
Browse files Browse the repository at this point in the history
  • Loading branch information
CrochetFeve0251 committed Jul 20, 2024
1 parent f51a4d9 commit d13a564
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions configs/parameters.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php
namespace Launchpad\Configs;

defined( 'ABSPATH' ) || exit;

$plugin_name = 'Launchpad';
$plugin_name = 'Launchpad'; // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound

$plugin_launcher_path = dirname( __DIR__ ) . '/';
$plugin_launcher_path = dirname( __DIR__ ) . '/'; // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound

return [
'plugin_name' => $plugin_name,
Expand Down
1 change: 1 addition & 0 deletions configs/providers.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
namespace Launchpad\Configs;

defined( 'ABSPATH' ) || exit;

Expand Down

0 comments on commit d13a564

Please sign in to comment.