Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE committed Feb 11, 2023
1 parent 8415fcc commit bdbf481
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/interface-settings-interface.php
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
<?php
/**
* Required settings for the plugin.
*
* @package brianhenryie/bh-wc-bitcoin-gateway
*/

namespace BrianHenryIE\WC_Bitcoin_Gateway;

/**
* Typed settings, presumably saved in `wp_options`.
*/
interface Settings_Interface {

/**
* Needed to add links on plugins.php.
*
* @return string
*/
public function get_plugin_basename(): string;

/**
* Semver plugin version for caching of js + css.
* Version compare during upgrade.
*
* @return string
*/
public function get_plugin_version(): string;

/**
* The URL to the plugin folder.
* E.g. `https://example.org/wp-content/plugins/bh-wc-bitcoin-gateway`.
* E.g. `https://example.org/wp-content/plugins/bh-wc-bitcoin-gateway/`.
*
* Has trailing slash.
*/
Expand Down

0 comments on commit bdbf481

Please sign in to comment.