refactor: run rector DEAD_CODE ruleset

This commit is contained in:
Ben Goldsworthy 2021-05-02 10:18:47 +01:00
parent 35745a7623
commit 4299a71df5
5 changed files with 5 additions and 25 deletions

View file

@ -25,16 +25,6 @@ use footnotes\includes as Includes;
*/
class WYSIWYG {
/**
* The ID of this plugin.
*
* @access private
* @var string $plugin_name The ID of this plugin.
*
* @since 2.8.0
*/
private $plugin_name;
/**
* Initialize the class and set its properties.
*
@ -42,10 +32,8 @@ class WYSIWYG {
*
* @since 2.8.0
*/
public function __construct( $plugin_name ) {
$this->plugin_name = $plugin_name;
public function __construct()
{
}
/**