Skip to content

Commit

Permalink
Installer must implement the DB aware interface as well (#38187)
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo authored Jun 30, 2022
1 parent 6a80093 commit 958669b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/src/Installer/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\CMS\Table\Extension;
use Joomla\CMS\Table\Table;
use Joomla\Database\DatabaseAwareInterface;
use Joomla\Database\DatabaseAwareTrait;
use Joomla\Database\DatabaseDriver;
use Joomla\Database\DatabaseInterface;
Expand All @@ -33,7 +34,7 @@
*
* @since 3.1
*/
class Installer extends Adapter
class Installer extends Adapter implements DatabaseAwareInterface
{
use DatabaseAwareTrait;

Expand Down

0 comments on commit 958669b

Please sign in to comment.