You are here

PSR4.php in Drupal 7 to 8/9 Module Upgrader 8

File

src/Plugin/DMU/Analyzer/PSR4.php
View source
<?php

namespace Drupal\drupalmoduleupgrader\Plugin\DMU\Analyzer;

use Drupal\drupalmoduleupgrader\AnalyzerBase;
use Drupal\drupalmoduleupgrader\TargetInterface;

/**
 * @Analyzer(
 *  id = "PSR4",
 *  description = @Translation("Checks if the module defines any classes that need to be moved into a PSR-4 structure."),
 *  documentation = {
 *    {
 *      "url" = "https://www.drupal.org/node/2246699",
 *      "title" = @Translation("PSR-4 compatible class loader in Drupal core")
 *    }
 *  },
 *  tags = {
 *    "category" = { "misc", "system" }
 *  },
 *  message = @Translation("Classes must be PSR-4 compliant.")
 * )
 */
class PSR4 extends AnalyzerBase {

  /**
   * {@inheritdoc}
   */
  public function analyze(TargetInterface $target) {
    $issues = [];
    $class_count = $target
      ->getIndexer('class')
      ->getQuery()
      ->condition('type', 'Pharborist\\Objects\\ClassNode')
      ->countQuery()
      ->execute()
      ->fetchField();
    if ($class_count > 0) {
      $issues[] = $this
        ->buildIssue($target);
    }
    return $issues;
  }

}

Classes

Namesort descending Description
PSR4 Plugin annotation @Analyzer( id = "PSR4", description = @Translation("Checks if the module defines any classes that need to be moved into a PSR-4 structure."), documentation = { { "url" = "https://www.drupal.org/node/2246699", "title"…