Skip to content

Commit

Permalink
Merge pull request #5250 from brittainmark/php82BasePluginInstaller
Browse files Browse the repository at this point in the history
PHP8.2 Define Parameters BasePluginInstaller
  • Loading branch information
scottcwilson committed Sep 24, 2022
2 parents 15ef4f2 + 53b49d3 commit 67e3ad1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions includes/classes/PluginSupport/BasePluginInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@

class BasePluginInstaller
{

/**
* $dbConn is a database object
* @var object
*/
protected $dbConn;
/**
* $errorContainer is a PluginErrorContainer object
* @var object
*/
protected $errorContainer;
/**
* $errorContainer is a pluginInstaller object
* @var object
*/
protected $pluginInstaller;
/**
* $pluginDir is the directory where the plugin is located
* @var string
*/
protected $pluginDir;

public function __construct($dbConn, $pluginInstaller, $errorContainer)
Expand Down

0 comments on commit 67e3ad1

Please sign in to comment.