Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autoloading is broken when added as a project dependency #68

Closed
mikemadison13 opened this issue May 7, 2019 · 22 comments
Closed

Autoloading is broken when added as a project dependency #68

mikemadison13 opened this issue May 7, 2019 · 22 comments

Comments

@mikemadison13
Copy link

mikemadison13 commented May 7, 2019

Related to #55 but for custom modules, not contrib.

While running drupal-check docroot/modules/custom, I am getting <class> was not found while trying to analyse it - autoloading is probably not configured properly. for each of my custom modules.

I understand for contrib why this might be a thing, but for the custom modules I don't expect them to ever be autoloaded (since they weren't adding with composter).

I have tried to do this both from the project level and globally. I know @mglaman suggests doing it globally. It would be really nice if we could require this library at the project level, so that it is one less global dependency that everyone has to install, CI has to install, etc. composer install at the project level would be a really ideal way to pull in this library!

@mikemadison13
Copy link
Author

mikemadison13 commented May 7, 2019

the background on this comes from trying to add this to https://github.com/acquia/blt so that we can provide a default validation, as we have with https://github.com/squizlabs/PHP_CodeSniffer and other validation libraries, to automatically check for deprecated code in custom modules and themes.

@mglaman mglaman added this to To do in PHPStan + Drupal May 7, 2019
@JTubex
Copy link

JTubex commented May 8, 2019

I'm having the same problem. drupal-check works when using the .phar file, but when installed using composer on a project-level, as described in the README.md, i get "Class ... was not found while trying to analyse it - autoloading is probably not configured properly."

Command I execute:
vendor/bin/drupal-check modules/token/ -vvv

Output:

Using Drupal root: /private/var/www/drupal8.7
Using vendor root: /private/var/www/drupal8.7/vendor
Using autoloader: /private/var/www/drupal8.7/vendor/autoload.php
/private/var/www/drupal8.7/modules/token/tests/modules/token_module_test/src/Controller/TokenTreeBrowseController.php
/private/var/www/drupal8.7/modules/token/tests/src/Functional/UrlTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/ViewsTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/RandomTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/UnitTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/CommentTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/FileTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/KernelTestBase.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/EntityTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/DateTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/BookTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/UrlTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/FieldTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/ArrayTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/NodeTest.php
/private/var/www/drupal8.7/modules/token/tests/src/Kernel/TaxonomyTest.php
/private/var/www/drupal8.7/modules/token/src/TokenServiceProvider.php
/private/var/www/drupal8.7/modules/token/src/Token.php
/private/var/www/drupal8.7/modules/token/src/TokenEntityMapper.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenURLTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenTestBase.php
/private/var/www/drupal8.7/modules/token/src/Tests/Tree/TreeTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/Tree/HelpPageTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/Tree/TokenTreeTestTrait.php
/private/var/www/drupal8.7/modules/token/src/Tests/Tree/AutocompleteTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenUserTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenTestTrait.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenFieldUiTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenCurrentPageTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenMenuTest.php
/private/var/www/drupal8.7/modules/token/src/Tests/TokenBlockTest.php
/private/var/www/drupal8.7/modules/token/src/Plugin/Derivative/DevelLocalTask.php
/private/var/www/drupal8.7/modules/token/src/Element/TokenTreeTable.php
/private/var/www/drupal8.7/modules/token/src/TreeBuilderInterface.php
/private/var/www/drupal8.7/modules/token/src/Controller/TokenTreeController.php
/private/var/www/drupal8.7/modules/token/src/Controller/TokenCacheController.php
/private/var/www/drupal8.7/modules/token/src/Controller/TokenDevelController.php
/private/var/www/drupal8.7/modules/token/src/Controller/TokenAutocompleteController.php
/private/var/www/drupal8.7/modules/token/src/TreeBuilder.php
/private/var/www/drupal8.7/modules/token/src/TokenEntityMapperInterface.php
/private/var/www/drupal8.7/modules/token/src/Routing/RouteSubscriber.php
/private/var/www/drupal8.7/modules/token/src/TokenInterface.php
 ------ ----------------------------------------------------------------------------------------- 
  Line   src/Controller/TokenAutocompleteController.php                                           
 ------ ----------------------------------------------------------------------------------------- 
         Class Drupal\token\Controller\TokenAutocompleteController was not found while trying to  
         analyse it - autoloading is probably not configured properly.                            
 ------ ----------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------ 
  Line   src/Controller/TokenCacheController.php                                                   
 ------ ------------------------------------------------------------------------------------------ 
         Class Drupal\token\Controller\TokenCacheController was not found while trying to analyse  
         it - autoloading is probably not configured properly.                                     
 ------ ------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------ 
  Line   src/Controller/TokenDevelController.php                                                   
 ------ ------------------------------------------------------------------------------------------ 
         Class Drupal\token\Controller\TokenDevelController was not found while trying to analyse  
         it - autoloading is probably not configured properly.                                     
 ------ ------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------- 
  Line   src/Controller/TokenTreeController.php                                                   
 ------ ----------------------------------------------------------------------------------------- 
         Class Drupal\token\Controller\TokenTreeController was not found while trying to analyse  
         it - autoloading is probably not configured properly.                                    
 ------ ----------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------- 
  Line   src/Element/TokenTreeTable.php                                                        
 ------ -------------------------------------------------------------------------------------- 
         Class Drupal\token\Element\TokenTreeTable was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                      
 ------ -------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------- 
  Line   src/Plugin/Derivative/DevelLocalTask.php                                                   
 ------ ------------------------------------------------------------------------------------------- 
         Class Drupal\token\Plugin\Derivative\DevelLocalTask was not found while trying to analyse  
         it - autoloading is probably not configured properly.                                      
 ------ ------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------- 
  Line   src/Routing/RouteSubscriber.php                                                        
 ------ --------------------------------------------------------------------------------------- 
         Class Drupal\token\Routing\RouteSubscriber was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                       
 ------ --------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------ 
  Line   src/Tests/TokenBlockTest.php                                                        
 ------ ------------------------------------------------------------------------------------ 
         Class Drupal\token\Tests\TokenBlockTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                    
 ------ ------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------ 
  Line   src/Tests/TokenCurrentPageTest.php                                                        
 ------ ------------------------------------------------------------------------------------------ 
         Class Drupal\token\Tests\TokenCurrentPageTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                          
 ------ ------------------------------------------------------------------------------------------ 

 ------ -------------------------------------------------------------------------------------- 
  Line   src/Tests/TokenFieldUiTest.php                                                        
 ------ -------------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\TokenFieldUiTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                      
 ------ -------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------- 
  Line   src/Tests/TokenMenuTest.php                                                        
 ------ ----------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\TokenMenuTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                   
 ------ ----------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------- 
  Line   src/Tests/TokenTestBase.php                                                        
 ------ ----------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\TokenTestBase was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                   
 ------ ----------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------- 
  Line   src/Tests/TokenURLTest.php                                                        
 ------ ---------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\TokenURLTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                  
 ------ ---------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------- 
  Line   src/Tests/TokenUserTest.php                                                        
 ------ ----------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\TokenUserTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                   
 ------ ----------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------- 
  Line   src/Tests/Tree/AutocompleteTest.php                                                        
 ------ ------------------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\Tree\AutocompleteTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                           
 ------ ------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------- 
  Line   src/Tests/Tree/HelpPageTest.php                                                        
 ------ --------------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\Tree\HelpPageTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                       
 ------ --------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------- 
  Line   src/Tests/Tree/TreeTest.php                                                        
 ------ ----------------------------------------------------------------------------------- 
         Class Drupal\token\Tests\Tree\TreeTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                   
 ------ ----------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------ 
  Line   src/Token.php                                                                       
 ------ ------------------------------------------------------------------------------------ 
         Class Drupal\token\Token was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                   
 ------ ------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------- 
  Line   src/TokenEntityMapper.php                                                        
 ------ --------------------------------------------------------------------------------- 
         Class Drupal\token\TokenEntityMapper was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                 
 ------ --------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------ 
  Line   src/TokenEntityMapperInterface.php                                                        
 ------ ------------------------------------------------------------------------------------------ 
         Class Drupal\token\TokenEntityMapperInterface was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                          
 ------ ------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------ 
  Line   src/TokenInterface.php                                                                    
 ------ ------------------------------------------------------------------------------------------ 
         Class Drupal\token\TokenInterface was not found while trying to analyse it - autoloading  
         is probably not configured properly.                                                      
 ------ ------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------ 
  Line   src/TokenServiceProvider.php                                                        
 ------ ------------------------------------------------------------------------------------ 
         Class Drupal\token\TokenServiceProvider was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                    
 ------ ------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------ 
  Line   src/TreeBuilder.php                                                                       
 ------ ------------------------------------------------------------------------------------------ 
         Class Drupal\token\TreeBuilder was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                         
 ------ ------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------ 
  Line   src/TreeBuilderInterface.php                                                        
 ------ ------------------------------------------------------------------------------------ 
         Class Drupal\token\TreeBuilderInterface was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                    
 ------ ------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------- 
  Line   tests/modules/token_module_test/src/Controller/TokenTreeBrowseController.php             
 ------ ----------------------------------------------------------------------------------------- 
         Class Drupal\token_module_test\Controller\TokenTreeBrowseController was not found while  
         trying to analyse it - autoloading is probably not configured properly.                  
 ------ ----------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------- 
  Line   tests/src/Functional/UrlTest.php                                                        
 ------ ---------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Functional\UrlTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                        
 ------ ---------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/ArrayTest.php                                                        
 ------ -------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\ArrayTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                      
 ------ -------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/BookTest.php                                                        
 ------ ------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\BookTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                     
 ------ ------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/CommentTest.php                                                        
 ------ ---------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\CommentTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                        
 ------ ---------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/DateTest.php                                                        
 ------ ------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\DateTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                     
 ------ ------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/EntityTest.php                                                        
 ------ --------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\EntityTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                       
 ------ --------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/FieldTest.php                                                        
 ------ -------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\FieldTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                      
 ------ -------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/FileTest.php                                                        
 ------ ------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\FileTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                     
 ------ ------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/KernelTestBase.php                                                        
 ------ ------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\KernelTestBase was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                           
 ------ ------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/NodeTest.php                                                        
 ------ ------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\NodeTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                     
 ------ ------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/RandomTest.php                                                        
 ------ --------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\RandomTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                       
 ------ --------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/TaxonomyTest.php                                                        
 ------ ----------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\TaxonomyTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                         
 ------ ----------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/UnitTest.php                                                        
 ------ ------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\UnitTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                     
 ------ ------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------ 
  Line   tests/src/Kernel/UrlTest.php                                                        
 ------ ------------------------------------------------------------------------------------ 
         Class Drupal\Tests\token\Kernel\UrlTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                    
 ------ ------------------------------------------------------------------------------------ 

 ------ -------------------------------------------------------------------------------------- 
  Line   tests/src/Kernel/ViewsTest.php                                                        
 ------ -------------------------------------------------------------------------------------- 
         Class Drupal\Tests\token\Kernel\ViewsTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                      
 ------ -------------------------------------------------------------------------------------- 

 ------------------------------------------------------------------------------------------------------------------------------------------ 
  Error                                                                                                                                     
 ------------------------------------------------------------------------------------------------------------------------------------------ 
  Ignored error pattern #\Drupal calls should be avoided in classes, use dependency injection instead# was not matched in reported errors.  
  Ignored error pattern #Plugin definitions cannot be altered.# was not matched in reported errors.                                         
  Ignored error pattern #Missing cache backend declaration for performance.# was not matched in reported errors.                            
  Ignored error pattern #Plugin manager has cache backend specified but does not declare cache tags.# was not matched in reported errors.   
 ------------------------------------------------------------------------------------------------------------------------------------------ 

                                                                                                  
 [ERROR] Found 44 errors

@mglaman mglaman changed the title Custom Modules - Error: Class was not found while trying to analyse it - autoloading is probably not configured properly. Autoloading is broken when added as a project dependency May 8, 2019
@mglaman
Copy link
Owner

mglaman commented May 8, 2019

Retitled. Needs test coverage.

@msankhala
Copy link

I am also having the same problem. I tried with 1.0.8 and 1.0.9 version of drupal-check. My php version 7.1.12

@JDDoesDev
Copy link

@mikemadison13 can you link to the BLT issue that you're referencing in #68 (comment)?

@mikemadison13
Copy link
Author

I don't have one open at the moment @JDDoesDev, I was trying to add it when removing the deprecation code and ran into this issue. I'm happy to write one if that would be useful, but since all of my efforts locally were failing (because of this issue) I hadn't taken it any farther on the BLT side.

@JDDoesDev
Copy link

@mikemadison13 there is significant interest in this and a few of us are working on similar efforts. it may be in our best interest to try and put our heads together on it. if you do create an issue, please link it and i will pass it along to a few other people who are trying to come up with similar solutions.

@mikemadison13
Copy link
Author

ok cool! I definitely want to try and fit the use case of "regular" checks for deprecated code in custom modules so that devs are warned on an ongoing basis if they are committing it. i found similar issues in the phpstan issue queue so this may not technically be "just a drupal-check" issue.

@JDDoesDev
Copy link

@mikemadison13 thanks for the update! please feel free to tag me on the BLT issue if it gets created and I can pass it along and maybe get a few more eyes on the project if you're interested.

@grasmash
Copy link

grasmash commented May 15, 2019

I experience the same issue when installing globally via:
composer global require mglaman/drupal-check

The phar works fine.

@andrewbelcher
Copy link

I've also got the same issue with both global and local composer installs, I haven't tried the phar approach.

@MPParsley
Copy link
Contributor

Following this issue as we have the same error when using this package locally & globally.

Note that in order to work around this issue I had to remove it first:

composer global remove mglaman/drupal-check

And then install it using the phar:

curl -O -L https://github.com/mglaman/drupal-check/releases/latest/download/drupal-check.phar
mv drupal-check.phar /usr/local/bin/drupal-check
chmod +x /usr/local/bin/drupal-check

@mglaman
Copy link
Owner

mglaman commented Jun 12, 2019

Can you test against https://github.com/mglaman/drupal-check/releases/tag/1.0.10 ?

@mikemadison13
Copy link
Author

I added to a project and am still getting similar results:

composer show mglaman/drupal-check
name     : mglaman/drupal-check
descrip. : CLI tool for running checks on a Drupal code base
keywords : 
versions : * 1.0.10
type     : project
license  : MIT License (MIT) (OSI approved) https://spdx.org/licenses/MIT.html#licenseText
source   : [git] https://github.com/mglaman/drupal-check.git adaec25a178e8cbb512d9b27c6e362e419bd1cf2
dist     : [zip] https://api.github.com/repos/mglaman/drupal-check/zipball/adaec25a178e8cbb512d9b27c6e362e419bd1cf2 adaec25a178e8cbb512d9b27c6e362e419bd1cf2
path     : /Users/mike.madison/git/Drupal-GovCon-2017/vendor/mglaman/drupal-check
names    : mglaman/drupal-check

autoload
psr-4
DrupalCheck\ => src

requires
composer/xdebug-handler ^1.3
jean85/pretty-package-versions ^1.2
mglaman/phpstan-drupal-deprecations ^0.11.1
mglaman/phpstan-junit ^0.11.1
php ~7.1
symfony/console ~3.2 || ~4.0
webflo/drupal-finder ^1.1

requires (dev)
squizlabs/php_codesniffer ^3.4

conflicts
phpstan/phpstan >=0.11.7

I ran:
drupal-check -d docroot/modules/ to hit both my contrib and custom folders. here is the output (which looks similar to the original problem):

 2612/2612 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100%

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/Hash.php                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\Hash was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/HostingInfo.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\HostingInfo was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/HostingInfoInterface.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\HostingInfoInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/Http/FailedInvalidationException.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\Http\FailedInvalidationException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acquia_purge/src/Http/LoadBalancerMiddleware.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acquia_purge\Http\LoadBalancerMiddleware was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/Plugin/Purge/DiagnosticCheck/AcquiaPurgeCheck.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\Plugin\Purge\DiagnosticCheck\AcquiaPurgeCheck was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/Plugin/Purge/DiagnosticCheck/BetaProgramCheck.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\Plugin\Purge\DiagnosticCheck\BetaProgramCheck was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/Plugin/Purge/DiagnosticCheck/LoadBalancersCheck.php                                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\Plugin\Purge\DiagnosticCheck\LoadBalancersCheck was not found while trying to analyse it - autoloading  
         is probably not configured properly.                                                                                              
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acquia_purge/src/Plugin/Purge/Purger/AcquiaCloudPurger.php                                                                  
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acquia_purge\Plugin\Purge\Purger\AcquiaCloudPurger was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                            
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acquia_purge/src/Plugin/Purge/TagsHeader/AcquiaPurgeTagsHeader.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acquia_purge\Plugin\Purge\TagsHeader\AcquiaPurgeTagsHeader was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acquia_purge/src/Plugin/Purge/TagsHeader/AcquiaSiteHeader.php                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acquia_purge\Plugin\Purge\TagsHeader\AcquiaSiteHeader was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/acsf_init/lib/cloud_hooks/common/pre-web-activate/000-acquia-deployment.php                           
 ------ ------------------------------------------------------------------------------------------------------------------- 
         Class SimpleRestCreds was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/acsf_init/lib/sites/g/SimpleRest.php                                                                          
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Acquia\SimpleRest\SimpleRestCreds was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/acsf_sj/src/Api/SjApiClient.php                                                                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf_sj\Api\SjApiClient was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/acsf_sj/tests/src/Unit/AcsfSjUnitTest.php                                                                     
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\acsf_sj\Unit\TestAcsfSjUnitTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/acsf_sj/tests/src/Unit/TestSjApiClient.php                                                                            
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\acsf_sj\Unit\TestSjApiClient was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/acsf_sso/src/EventSubscriber/SamlauthRequestSubscriber.php                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acsf_sso\EventSubscriber\SamlauthRequestSubscriber was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                            
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/acsf_sso/src/EventSubscriber/SamlauthUserSyncSubscriber.php                                                    
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf_sso\EventSubscriber\SamlauthUserSyncSubscriber was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfConfig.php                                                                                           
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfConfig was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfConfigDefault.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfConfigDefault was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfConfigIncompleteException.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfConfigIncompleteException was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfConfigMissingCredsException.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfConfigMissingCredsException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/src/AcsfConfigRest.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acsf\AcsfConfigRest was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfException.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfException was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfInitException.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfInitException was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfInitHtaccessException.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfInitHtaccessException was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfLog.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfLog was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessage.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessage was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageEmptyResponseException.php                                                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageEmptyResponseException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                        
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageFailedResponseException.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageFailedResponseException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageFailureException.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageFailureException was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                        
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageMalformedResponseException.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageMalformedResponseException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageMissingCredsException.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageMissingCredsException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageResponse.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageResponse was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageResponseRest.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageResponseRest was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfMessageRest.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfMessageRest was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/src/AcsfSite.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acsf\AcsfSite was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfSiteMissingIdentifierException.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfSiteMissingIdentifierException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfThemeNotify.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfThemeNotify was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/AcsfVariableStorage.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\AcsfVariableStorage was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubCommentHandler.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubCommentHandler was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubCommentStorage.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubCommentStorage was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubConfigurationHandler.php                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubConfigurationHandler was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubEntityHandler.php                                                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubEntityHandler was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                              
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubFinalizeHandler.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acsf\Event\AcsfDuplicationScrubFinalizeHandler was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                                
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubInitializeHandler.php                                                                  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubInitializeHandler was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                          
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubNodeHandler.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubNodeHandler was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubTemporaryFilesHandler.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubTemporaryFilesHandler was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                            
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubTruncateTablesHandler.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubTruncateTablesHandler was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                            
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfDuplicationScrubUserHandler.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfDuplicationScrubUserHandler was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfEvent.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfEvent was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfEventDispatcher.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfEventDispatcher was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfEventHandler.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfEventHandler was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                   
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfEventHandlerIncompatibleException.php                                                                  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfEventHandlerIncompatibleException was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                          
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfSiteInfoHandler.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfSiteInfoHandler was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Event/AcsfThemeDuplicationScrubbingHandler.php                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Event\AcsfThemeDuplicationScrubbingHandler was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                         
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/src/EventSubscriber/AcsfMaintenanceModeSubscriber.php                                                                  
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\acsf\EventSubscriber\AcsfMaintenanceModeSubscriber was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                            
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/src/Routing/RouteSubscriber.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\acsf\Routing\RouteSubscriber was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/tests/AcsfConfigTest.php                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------ 
         Class AcsfConfigTest was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/tests/AcsfEventsTest.php                                                                       
 ------ ------------------------------------------------------------------------------------------------------------ 
         Class UnitTest was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/tests/AcsfMessageTest.php                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------- 
         Class AcsfMessageTest was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/tests/AcsfSiteTest.php                                                                             
 ------ ---------------------------------------------------------------------------------------------------------------- 
         Class AcsfSiteTest was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ---------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/tests/AcsfVariableStorageMock.php                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class AcsfVariableStorageMock was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/tests/UnitTestDummyHandler1.php                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------- 
         Class UnitTestDummyHandler1 was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/tests/UnitTestDummyHandler2.php                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------- 
         Class UnitTestDummyHandler2 was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/tests/UnitTestDummyHandler3.php                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------- 
         Class UnitTestDummyHandler3 was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/acsf/tests/UnitTestDummyHandlerIncompatible.php                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class UnitTestDummyHandlerIncompatible was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/tests/UnitTestDummyHandlerInterrupt.php                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class UnitTestDummyHandlerInterrupt was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/vendor/composer/autoload_real.php                                                                                   
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class ComposerAutoloaderInit5d62f54ff8e50cffd2d885391b9f3b43 was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                         
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/acsf/vendor/composer/autoload_static.php                                                                                   
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Composer\Autoload\ComposerStaticInit5d62f54ff8e50cffd2d885391b9f3b43 was not found while trying to analyse it - autoloading  
         is probably not configured properly.                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/admin_toolbar/admin_toolbar_tools/src/Controller/ToolbarController.php                                                    
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\admin_toolbar_tools\Controller\ToolbarController was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                          
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/admin_toolbar/admin_toolbar_tools/tests/src/Functional/AdminToolbarToolsAlterTest.php                            
 ------ ------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\admin_toolbar_tools\Functional\AdminToolbarToolsAlterTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/admin_toolbar/tests/src/Functional/AdminToolbarAlterTest.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\admin_toolbar\Functional\AdminToolbarAlterTest was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                            
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/admin_toolbar/tests/src/FunctionalJavascript/AdminToolbarSearchTest.php                                          
 ------ ------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\admin_toolbar\FunctionalJavascript\AdminToolbarSearchTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/adminimal_admin_toolbar/src/Form/SettingsForm.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\adminimal_admin_toolbar\Form\SettingsForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/better_exposed_filters/src/Plugin/views/exposed_form/BetterExposedFilters.php                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\better_exposed_filters\Plugin\views\exposed_form\BetterExposedFilters was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                               
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/better_exposed_filters/tests/src/Unit/BetterExposedFiltersTest.php                                                    
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\better_exposed_filters\Tests\BetterExposedFiltersTest was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/calendar_datetime/src/Plugin/views/argument_default/Date.php                                                
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar_datetime\Plugin\views\argument_default\Date was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                            
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/calendar/src/CalendarDateInfo.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\calendar\CalendarDateInfo was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/CalendarEvent.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\CalendarEvent was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/CalendarHelper.php                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\CalendarHelper was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/CalendarStyleInfo.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\CalendarStyleInfo was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/DateArgumentWrapper.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\DateArgumentWrapper was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Form/CalendarSettingsForm.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Form\CalendarSettingsForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/Block/CalendarLegend.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\Block\CalendarLegend was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/Derivative/ViewsFieldTemplate.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\Derivative\ViewsFieldTemplate was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/ViewsTemplateBuilder/ViewsFieldTemplate.php                                                         
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\ViewsTemplateBuilder\ViewsFieldTemplate was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                               
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/views/area/CalendarHeader.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\views\area\CalendarHeader was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/views/argument/DatetimeYearWeekDate.php                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\views\argument\DatetimeYearWeekDate was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/views/argument/TimeStampYearWeekDate.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\views\argument\TimeStampYearWeekDate was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                            
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/views/argument_validator/CalendarValidator.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\views\argument_validator\CalendarValidator was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/views/pager/CalendarPager.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\views\pager\CalendarPager was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/views/row/Calendar.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\views\row\Calendar was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Plugin/views/style/Calendar.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Plugin\views\style\Calendar was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/calendar/src/Template/TwigExtension.php                                                                                 
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\calendar\Template\TwigExtension was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                       
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/image_captcha/src/Controller/CaptchaFontPreview.php                                                              
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\image_captcha\Controller\CaptchaFontPreview was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/image_captcha/src/Controller/CaptchaImageGeneratorController.php                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\image_captcha\Controller\CaptchaImageGeneratorController was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/image_captcha/src/Controller/CaptchaImageRefresh.php                                                              
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\image_captcha\Controller\CaptchaImageRefresh was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                              
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/image_captcha/src/Form/ImageCaptchaSettingsForm.php                                                              
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\image_captcha\Form\ImageCaptchaSettingsForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/image_captcha/src/Response/CaptchaImageResponse.php                                                              
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\image_captcha\Response\CaptchaImageResponse was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/modules/captcha_long_form_id_test/src/Form/LongIdForm.php                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha_long_form_id_test\Form\LongIdForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/captcha/src/CaptchaPointInterface.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\captcha\CaptchaPointInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                     
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Controller/CaptchaPointListBuilder.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Controller\CaptchaPointListBuilder was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Element/Captcha.php                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Element\Captcha was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Entity/CaptchaPoint.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Entity\CaptchaPoint was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                   
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/EventSubscriber/CaptchaCachedSettingsSubscriber.php                                                         
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\EventSubscriber\CaptchaCachedSettingsSubscriber was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                               
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Form/CaptchaExamplesForm.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Form\CaptchaExamplesForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                        
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/captcha/src/Form/CaptchaPointDeleteForm.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\captcha\Form\CaptchaPointDeleteForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Form/CaptchaPointDisableForm.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Form\CaptchaPointDisableForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/captcha/src/Form/CaptchaPointEnableForm.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\captcha\Form\CaptchaPointEnableForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/captcha/src/Form/CaptchaPointForm.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\captcha\Form\CaptchaPointForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                     
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Form/CaptchaSettingsForm.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Form\CaptchaSettingsForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                        
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Tests/CaptchaAdminTestCase.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Tests\CaptchaAdminTestCase was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Tests/CaptchaBaseWebTestCase.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Tests\CaptchaBaseWebTestCase was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Tests/CaptchaCacheTestCase.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Tests\CaptchaCacheTestCase was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Tests/CaptchaCronTestCase.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Tests\CaptchaCronTestCase was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/captcha/src/Tests/CaptchaPersistenceTestCase.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\captcha\Tests\CaptchaPersistenceTestCase was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/captcha/src/Tests/CaptchaSessionReuseAttackTestCase.php                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\captcha\Tests\CaptchaSessionReuseAttackTestCase was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                         
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/captcha/src/Tests/CaptchaTestCase.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\captcha\Tests\CaptchaTestCase was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                     
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/src/EventSubscriber/CloudFlareCacheTagHeaderGenerator.php                       
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflarepurger\EventSubscriber\CloudFlareCacheTagHeaderGenerator was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                            
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/src/Plugin/Purge/DiagnosticCheck/ApiRateLimitCheck.php                       
 ------ ------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflarepurger\Plugin\Purge\DiagnosticCheck\ApiRateLimitCheck was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/src/Plugin/Purge/DiagnosticCheck/ComposerDependenciesCheck.php                       
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflarepurger\Plugin\Purge\DiagnosticCheck\ComposerDependenciesCheck was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/src/Plugin/Purge/DiagnosticCheck/CredentialCheck.php                                   
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflarepurger\Plugin\Purge\DiagnosticCheck\CredentialCheck was not found while trying to analyse it - autoloading  
         is probably not configured properly.                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/src/Plugin/Purge/DiagnosticCheck/DailyTagPurgeLimitCheck.php                       
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflarepurger\Plugin\Purge\DiagnosticCheck\DailyTagPurgeLimitCheck was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                               
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/cloudflare/modules/cloudflarepurger/src/Plugin/Purge/Purger/CloudFlarePurger.php                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\cloudflarepurger\Plugin\Purge\Purger\CloudFlarePurger was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/tests/src/Unit/ApiRateLimitCheckTest.php                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\cloudflarepurger\Unit\ApiRateLimitCheckTest was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/tests/src/Unit/CredentialTestCheckTest.php                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\cloudflarepurger\Unit\CredentialTestCheckTest was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/tests/src/Unit/DailyTagPurgeLimitCheckTest.php                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\cloudflarepurger\Unit\DailyTagPurgeLimitCheckTest was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                               
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/modules/cloudflarepurger/tests/src/Unit/DiagnosticCheckTestBase.php                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\cloudflarepurger\Unit\DiagnosticCheckTestBase was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/CloudFlareComposerDependenciesCheckInterface.php                                                         
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\CloudFlareComposerDependenciesCheckInterface was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                               
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/cloudflare/src/CloudFlareStateInterface.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\cloudflare\CloudFlareStateInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/CloudFlareTimestampInterface.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\CloudFlareTimestampInterface was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/CloudFlareZoneInterface.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\CloudFlareZoneInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/ComposerDependenciesCheck.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\ComposerDependenciesCheck was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/EventSubscriber/ClientIpRestore.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\EventSubscriber\ClientIpRestore was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/Exception/ComposerDependencyException.php                                                                  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\Exception\ComposerDependencyException was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                          
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/Form/SettingsForm.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\Form\SettingsForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/Form/ZoneSelectionForm.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\Form\ZoneSelectionForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/State.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\State was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/Timestamp.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\Timestamp was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/Wizard/ConfigWizard.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\Wizard\ConfigWizard was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/src/Zone.php                                                                                           
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare\Zone was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/tests/modules/cloudflare_form_tester/src/CloudflareFormTesterServiceProvider.php                                
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare_form_tester\CloudflareFormTesterServiceProvider was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/tests/modules/cloudflare_form_tester/src/Mocks/ComposerDependenciesCheckMock.php                                
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare_form_tester\Mocks\ComposerDependenciesCheckMock was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/tests/modules/cloudflare_form_tester/src/Mocks/ZoneMock.php                                             
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\cloudflare_form_tester\Mocks\ZoneMock was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/cloudflare/tests/src/Functional/CloudFlareAdminSettingsFormTest.php                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\Tests\cloudflare\Functional\CloudFlareAdminSettingsFormTest was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                   
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/tests/src/Functional/CloudFlareAdminSettingsInvalidFormTest.php                                          
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\cloudflare\Functional\CloudFlareAdminSettingsInvalidFormTest was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                            
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/cloudflare/tests/src/Functional/ComposerDependencyTest.php                                                                  
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\Tests\cloudflare\Functional\ComposerDependencyTest was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                            
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/tests/src/Unit/ClientIpRestoreTest.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\cloudflare\Unit\ClientIpRestoreTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/cloudflare/tests/src/Unit/StateTest.php                                                                                 
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\cloudflare\Unit\StateTest was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                       
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/components/src/Form/ComponentsSettingsForm.php                                                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\components\Form\ComponentsSettingsForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                        
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/components/src/Template/Loader/ComponentLibraryLoader.php                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\components\Template\Loader\ComponentLibraryLoader was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/components/src/Template/TwigExtension.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\components\Template\TwigExtension was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/components/src/Template/TwigNodeTheme.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\components\Template\TwigNodeTheme was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/components/src/Template/TwigThemeTokenParser.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\components\Template\TwigThemeTokenParser was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Annotation/ConfigFilter.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Annotation\ConfigFilter was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Config/FilteredStorage.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Config\FilteredStorage was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Config/FilteredStorageInterface.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Config\FilteredStorageInterface was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Config/GhostStorage.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Config\GhostStorage was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Config/ReadOnlyStorage.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Config\ReadOnlyStorage was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Config/StorageFilterInterface.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Config\StorageFilterInterface was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/ConfigFilterManagerInterface.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\ConfigFilterManagerInterface was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/config_filter/src/ConfigFilterStorageFactory.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\config_filter\ConfigFilterStorageFactory was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/config_filter/src/Exception/InvalidStorageFilterException.php                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\config_filter\Exception\InvalidStorageFilterException was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Exception/UnsupportedMethod.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Exception\UnsupportedMethod was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Plugin/ConfigFilterBase.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Plugin\ConfigFilterBase was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Plugin/ConfigFilterInterface.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Plugin\ConfigFilterInterface was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/config_filter/src/Plugin/ConfigFilterPluginManager.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\config_filter\Plugin\ConfigFilterPluginManager was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                                
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Tests/FilteredStorageTest.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Tests\FilteredStorageTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Tests/GhostStorageTest.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Tests\GhostStorageTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Tests/ReadonlyStorageTest.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Tests\ReadonlyStorageTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/src/Tests/TransparentFilter.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter\Tests\TransparentFilter was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/tests/modules/config_filter_split_test/src/Config/ActiveMigrateStorage.php                               
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter_migrate_test\Config\ActiveMigrateStorage was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                              
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/tests/modules/config_filter_split_test/src/Plugin/ConfigFilter/TestSplitFilter.php                          
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter_split_test\Plugin\ConfigFilter\TestSplitFilter was not found while trying to analyse it - autoloading  
         is probably not configured properly.                                                                                              
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/tests/modules/config_filter_test/src/Plugin/ConfigFilter/PirateFilter.php                             
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_filter_test\plugin\ConfigFilter\PirateFilter was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_filter/tests/src/Kernel/ConfigFilterStorageFactoryTest.php                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\config_filter\Kernel\ConfigFilterStorageFactoryTest was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_ignore/src/Form/Settings.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_ignore\Form\Settings was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                   
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/config_ignore/src/Plugin/ConfigFilter/IgnoreFilter.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\config_ignore\Plugin\ConfigFilter\IgnoreFilter was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                                
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_ignore/tests/src/Functional/ConfigIgnoreBrowserTestBase.php                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\config_ignore\Functional\ConfigIgnoreBrowserTestBase was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_ignore/tests/src/Functional/ConfigIgnoreHookTest.php                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\config_ignore\Functional\ConfigIgnoreHookTest was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_ignore/tests/src/Functional/ConfigIgnoreTest.php                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\config_ignore\Functional\ConfigIgnoreTest was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                         
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/config_update/config_update_ui/src/Controller/ConfigUpdateController.php                                                    
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\config_update_ui\Controller\ConfigUpdateController was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                            
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/config_update_ui/src/Form/ConfigDeleteConfirmForm.php                                                        
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update_ui\Form\ConfigDeleteConfirmForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/config_update_ui/src/Form/ConfigImportConfirmForm.php                                                        
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update_ui\Form\ConfigImportConfirmForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/config_update_ui/src/Form/ConfigRevertConfirmForm.php                                                        
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update_ui\Form\ConfigRevertConfirmForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/config_update_ui/src/Tests/ConfigProfileOverridesTest.php                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update_ui\Tests\ConfigProfileOverridesTest was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/config_update_ui/src/Tests/ConfigUpdateTest.php                                                        
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update_ui\Tests\ConfigUpdateTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/config_update/src/ConfigDeleteInterface.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\config_update\ConfigDeleteInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigDiffInterface.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigDiffInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigDiffer.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigDiffer was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigListByProviderInterface.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigListByProviderInterface was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigListInterface.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigListInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigLister.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigLister was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigListerWithProviders.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigListerWithProviders was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigRevertEvent.php                                                                                 
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigRevertEvent was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                       
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/config_update/src/ConfigRevertInterface.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\config_update\ConfigRevertInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/src/ConfigReverter.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\config_update\ConfigReverter was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/tests/src/Unit/ConfigDifferTest.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\config_update\Unit\ConfigDifferTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/config_update/tests/src/Unit/ConfigListerTest.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\config_update\Unit\ConfigListerTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/context/modules/context_ui/src/ContextListBuilder.php                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\context_ui\ContextListBuilder was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                     
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/modules/context_ui/src/Controller/ContextUIController.php                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context_ui\Controller\ContextUIController was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/context/modules/context_ui/src/Form/ConditionDeleteForm.php                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\context_ui\Form\ConditionDeleteForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/modules/context_ui/src/Form/ContextAddForm.php                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context_ui\Form\ContextAddForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/modules/context_ui/src/Form/ContextDeleteForm.php                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context_ui\Form\ContextDeleteForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/modules/context_ui/src/Form/ContextDisableForm.php                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context_ui\Form\ContextDisableForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/modules/context_ui/src/Form/ContextEditForm.php                                                                 
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context_ui\Form\ContextEditForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                       
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/modules/context_ui/src/Form/ContextFormBase.php                                                                 
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context_ui\Form\ContextFormBase was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                       
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/modules/context_ui/src/Form/ReactionDeleteForm.php                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context_ui\Form\ReactionDeleteForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/ContextInterface.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\ContextInterface was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/ContextManager.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\ContextManager was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/ContextMenuActiveTrail.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\ContextMenuActiveTrail was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/ContextReactionInterface.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\ContextReactionInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                        
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/ContextReactionManager.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\ContextReactionManager was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/ContextReactionPluginBase.php                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\ContextReactionPluginBase was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/ContextServiceProvider.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\ContextServiceProvider was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Entity/Context.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Entity\Context was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Entity/ContextAccess.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Entity\ContextAccess was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/EventSubscriber/BlockPageDisplayVariantSubscriber.php                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\EventSubscriber\BlockPageDisplayVariantSubscriber was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                                 
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Plugin/Condition/RequestPathExclusion.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Plugin\Condition\RequestPathExclusion was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                               
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Plugin/ContextReaction/Blocks.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Plugin\ContextReaction\Blocks was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/context/src/Plugin/ContextReaction/BodyClass.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\context\Plugin\ContextReaction\BodyClass was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/context/src/Plugin/ContextReaction/Menu.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\context\Plugin\ContextReaction\Menu was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Plugin/ContextReaction/PageTemplateSuggestions.php                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Plugin\ContextReaction\PageTemplateSuggestions was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                              
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Plugin/ContextReaction/Regions.php                                                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Plugin\ContextReaction\Regions was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                        
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Plugin/ContextReaction/Theme.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Plugin\ContextReaction\Theme was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/context/src/Plugin/ContextReactionPluginCollection.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\context\Plugin\ContextReactionPluginCollection was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                                
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/context/src/Plugin/DisplayVariant/ContextBlockPageVariant.php                                                         
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\context\Plugin\DisplayVariant\ContextBlockPageVariant was not found while trying to analyse it - autoloading is  
         probably not configured properly.                                                                                             
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Reaction/Annotation/ContextReaction.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Reaction\Annotation\ContextReaction was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Reaction/Blocks/BlockCollection.php                                                                      
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Reaction\Blocks\BlockCollection was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                         
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Reaction/Blocks/Controller/ContextReactionBlocksController.php                                          
 ------ ---------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Reaction\Blocks\Controller\ContextReactionBlocksController was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                            
 ------ ---------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Reaction/Blocks/Form/BlockAddForm.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Reaction\Blocks\Form\BlockAddForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Reaction/Blocks/Form/BlockDeleteForm.php                                                                      
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Reaction\Blocks\Form\BlockDeleteForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                              
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Reaction/Blocks/Form/BlockEditForm.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Reaction\Blocks\Form\BlockEditForm was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Reaction/Blocks/Form/BlockFormBase.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Reaction\Blocks\Form\BlockFormBase was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                            
 ------ -------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/context/src/Reaction/ContextReactionFormBase.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\context\Reaction\ContextReactionFormBase was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/context/src/Theme/ThemeSwitcherNegotiator.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\context\Theme\ThemeSwitcherNegotiator was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Annotation/CropEntityProvider.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Annotation\CropEntityProvider was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/CropInterface.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\CropInterface was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/CropStorage.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\CropStorage was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/crop/src/CropStorageInterface.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\crop\CropStorageInterface was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/CropTypeInterface.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\CropTypeInterface was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/CropTypeListBuilder.php                                                                                           
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\CropTypeListBuilder was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Entity/Crop.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Entity\Crop was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Entity/CropType.php                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Entity\CropType was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/EntityProviderBase.php                                                                                           
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\EntityProviderBase was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/EntityProviderInterface.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\EntityProviderInterface was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/EntityProviderManager.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\EntityProviderManager was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                  
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/EntityProviderNotFoundException.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\EntityProviderNotFoundException was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Form/CropTypeDeleteForm.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Form\CropTypeDeleteForm was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                    
 ------ ----------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Form/CropTypeForm.php                                                                                           
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Form\CropTypeForm was not found while trying to analyse it - autoloading is probably not configured properly.  
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Plugin/Crop/EntityProvider/File.php                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Plugin\Crop\EntityProvider\File was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Plugin/Crop/EntityProvider/Media.php                                                                      
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Plugin\Crop\EntityProvider\Media was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Plugin/ImageEffect/CropEffect.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Plugin\ImageEffect\CropEffect was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Plugin/Validation/Constraint/CropTypeAspectRatioValidationConstraint.php                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Plugin\Validation\Constraint\CropTypeAspectRatioValidationConstraint was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                                   
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Plugin/Validation/Constraint/CropTypeAspectRatioValidationConstraintValidator.php                             
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Plugin\Validation\Constraint\CropTypeAspectRatioValidationConstraintValidator was not found while trying to  
         analyse it - autoloading is probably not configured properly.                                                                  
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Plugin/Validation/Constraint/CropTypeMachineNameValidationConstraint.php                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Plugin\Validation\Constraint\CropTypeMachineNameValidationConstraint was not found while trying to analyse it -  
         autoloading is probably not configured properly.                                                                                   
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/src/Plugin/Validation/Constraint/CropTypeMachineNameValidationConstraintValidator.php                             
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\crop\Plugin\Validation\Constraint\CropTypeMachineNameValidationConstraintValidator was not found while trying to  
         analyse it - autoloading is probably not configured properly.                                                                  
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/crop/tests/src/Functional/CropFunctionalTest.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\Tests\crop\Functional\CropFunctionalTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                          
 ------ ------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/tests/src/Kernel/CropCRUDTest.php                                                                                 
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\crop\Kernel\CropCRUDTest was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/tests/src/Kernel/CropEffectTest.php                                                                                 
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\crop\Kernel\CropEffectTest was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                        
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/tests/src/Kernel/CropEntityProvidersTest.php                                                                      
 ------ ------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\crop\Kernel\CropEntityProvidersTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                           
 ------ ------------------------------------------------------------------------------------------------------------------------------- 

 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/crop/tests/src/Kernel/CropUnitTestBase.php                                                                                 
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\crop\Kernel\CropUnitTestBase was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                          
 ------ ----------------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/ctools/modules/ctools_block/src/Plugin/Block/EntityField.php                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\ctools_block\Plugin\Block\EntityField was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/ctools/modules/ctools_block/src/Plugin/Deriver/EntityFieldDeriver.php                                                       
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\ctools_block\Plugin\Deriver\EntityFieldDeriver was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                                
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/ctools/modules/ctools_block/tests/src/Functional/EntityFieldBlockTest.php                                                   
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\Tests\ctools_block\Functional\EntityFieldBlockTest was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                            
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/ctools/modules/ctools_entity_mask/src/MaskContentEntityStorage.php                                                       
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\ctools_entity_mask\MaskContentEntityStorage was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                             
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ -------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/ctools/modules/ctools_entity_mask/tests/modules/entity_mask_test/src/Entity/BlockContent.php                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\entity_mask_test\Entity\BlockContent was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                      
 ------ -------------------------------------------------------------------------------------------------------------------------- 

 ------ --------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/ctools/modules/ctools_entity_mask/tests/src/Functional/DisplayTest.php                                                   
 ------ --------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\Tests\ctools_entity_mask\Functional\DisplayTest was not found while trying to analyse it - autoloading is probably  
         not configured properly.                                                                                                         
 ------ --------------------------------------------------------------------------------------------------------------------------------- 

 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
  Line   contrib/ctools/modules/ctools_entity_mask/tests/src/Kernel/EntityMaskTest.php                                                       
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 
         Class Drupal\Tests\ctools_entity_mask\Kernel\EntityMaskTest was not found while trying to analyse it - autoloading is probably not  
         configured properly.                                                                                                                
 ------ ------------------------------------------------------------------------------------------------------------------------------------ 

 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
  Line   contrib/ctools/modules/ctools_views/src/Plugin/Display/Block.php                                                                  
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 
         Class Drupal\ctools_views\Plugin\Display\Block was not found while trying to analyse it - autoloading is probably not configured  
         properly.                                                                                                                         
 ------ ---------------------------------------------------------------------------------------------------------------------------------- 


[truncated]
                                                                                                                        
 [ERROR] Found 2512 errors                                                                                              
                                                                                                                        

@eelkeblok
Copy link

I'm having much better results. I just added mglaman/drupal-check to a project with

composer require mglaman/drupal-check

I then went into the web directory (it is a drupal-composer project) and ran

../vendor/bin/drupal-check -d modules/custom

I got:

 74/74 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100%

 ------ ------------------------------------------------------- 
  Line   pdf_generator/src/MpdfGenerator.php                    
 ------ ------------------------------------------------------- 
  212    Call to deprecated function file_prepare_directory().  
 ------ ------------------------------------------------------- 

                                                                                                                    
 [ERROR] Found 1 error                                                                                                  

@MPParsley
Copy link
Contributor

MPParsley commented Jun 13, 2019

Can you test against https://github.com/mglaman/drupal-check/releases/tag/1.0.10 ?

$ ./vendor/bin/drupal-check -d web/modules/custom/
 253/253 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100%
 [OK] No errors                                                                                                         

Seems to work splendid, thanks!

Note that you may want to advise using this project as a dev dependency, see #87.

@mikemadison13
Copy link
Author

Apologies, I forgot I still had the global version installed. Running out of vendor/bin worked like a charm!

I did get an error at one point that killed my progress on contrib modules.

PHP Fatal error:  Trait method getLibrary has not been applied, because there are collisions with other trait methods on Drupal\libraries\ExternalLibrary\Exception\InvalidLibraryDependencyException in /Users/mike.madison/git/Drupal-GovCon-2017/docroot/modules/contrib/libraries/src/ExternalLibrary/Exception/InvalidLibraryDependencyException.php on line 13

@mglaman
Copy link
Owner

mglaman commented Jun 14, 2019

So it seems like everything is OK here. I'm going to close. Let me know if there is still something wrong.

@mikemadison13 that error is a legit PHP error caused by the libraries module (probably dead code which never runs and bug never found)

@mglaman mglaman closed this as completed Jun 14, 2019
PHPStan + Drupal automation moved this from To do to Done Jun 14, 2019
@mikemadison13
Copy link
Author

FYI BLT merged this feature in a few days ago. It can be manually patched into BLT 10.x and will be available in the next 10.x release (note that it must be enabled for both modules and themes). thanks so much @mglaman for the work on this! super excited to have this be a part of our automated testing suite.

@nileshlohar
Copy link

We are still getting the same error with v1.0.14 and BLT v10.5.0

@jabxjab
Copy link

jabxjab commented Dec 4, 2019

We are still getting the same error with v1.0.14 and BLT v10.5.0

I've managed to fix my issues by checking (and correcting) carefully all class namespaces (and @Package tags) under the question.

@mikemadison13
Copy link
Author

note that I had this issue recently as well, and as @jabxjab mentioned it was because of improperly namespaced files / bad use statements. In this case I believe the error was legit, nothing to be fixed as far as I can tell.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Development

No branches or pull requests