Skip to content

Commit

Permalink
Update ClassPluginPhp.php (fix #103)
Browse files Browse the repository at this point in the history
  • Loading branch information
convenient authored Jul 10, 2023
1 parent c07d351 commit f62332f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Ampersand/PatchHelper/Checks/ClassPluginPhp.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ public function check()
if (isset($pluginConf['disabled']) && $pluginConf['disabled']) {
continue;
}
if (!isset($pluginConf['instance'])) {
continue;
}
$pluginClass = $pluginConf['instance'];
$pluginClass = ltrim($pluginClass, '\\');

Expand Down

0 comments on commit f62332f

Please sign in to comment.