Skip to content
Snippets Groups Projects

Fixes added manually on top of bot's changes

3 unresolved threads
Files
5
@@ -2,13 +2,13 @@
/**
* @file
* Contains \Drupal\composer_deploy\ComposerDeployHanlder.
* Contains \Drupal\composer_deploy\ComposerDeployHandler.
*/
namespace Drupal\composer_deploy;
use DrupalFinder\DrupalFinder;
use Webmozart\PathUtil\Path;
use DrupalFinder\DrupalFinderComposerRuntime;
use Symfony\Component\Filesystem\Path;
/**
* @internal
@@ -29,7 +29,7 @@ class ComposerDeployHandler {
*/
protected $drupalFinder;
public function __construct(DrupalFinder $drupalFinder) {
public function __construct(DrupalFinderComposerRuntime $drupalFinder) {
    • This class was recently added, but yet there is no update to composer requirements. Thus its likely to fail if webflo/drupal-finder isn't updated to the latest version, which also requires php 8.1

Please register or sign in to reply
$this->drupalFinder = $drupalFinder;
$packages = json_decode(file_get_contents($this->drupalFinder->getVendorDir() . '/composer/installed.json'), TRUE);
Loading