From 0b4cc064f52fbfca009bbb810bc245dea136b4ef Mon Sep 17 00:00:00 2001 From: milind0308 <milind0308@2783955.no-reply.drupal.org> Date: Mon, 4 Jan 2021 12:51:00 +0200 Subject: [PATCH] Issue #3039243 by milindk, jefuri, TravisCarden, amitgoyal, Berdir: Fatal error: Trait method getLibrary has not been applied --- .../Exception/InvalidLibraryDependencyException.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ExternalLibrary/Exception/InvalidLibraryDependencyException.php b/src/ExternalLibrary/Exception/InvalidLibraryDependencyException.php index 7ab3eeb..e307846 100644 --- a/src/ExternalLibrary/Exception/InvalidLibraryDependencyException.php +++ b/src/ExternalLibrary/Exception/InvalidLibraryDependencyException.php @@ -12,8 +12,10 @@ use Drupal\libraries\ExternalLibrary\Utility\LibraryAccessorInterface; */ class InvalidLibraryDependencyException extends \UnexpectedValueException implements LibraryAccessorInterface { - use LibraryAccessorTrait; - use DependencyAccessorTrait; + use LibraryAccessorTrait, DependencyAccessorTrait { + LibraryAccessorTrait::getLibrary insteadof DependencyAccessorTrait; + DependencyAccessorTrait::getLibrary as libraryAccessor; + } /** * Constructs a library exception. -- GitLab