bnomei/kirby3-handlebars

View on GitHub

Showing 11 of 11 total issues

File LncFiles.php has 267 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
 
declare(strict_types=1);
 
namespace Bnomei;
Severity: Minor
Found in classes/LncFiles.php - About 2 hrs to fix

    Function php has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

    public function php(string $php = null): ?string
    {
    // lazy loading
    if ($php === null) {
    if ($this->target() && A::get($this->data, 'lnc') && F::exists($this->target())) {
    Severity: Minor
    Found in classes/LncFile.php - About 1 hr to fix

    Function registerAllTemplates has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    public function registerAllTemplates(): array
    {
    $this->files = $this->load();
     
    $anyPartialNeedsUpdate = false;
    Severity: Minor
    Found in classes/LncFiles.php - About 1 hr to fix

    Method scan has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    public function scan(): array
    {
    $files = [];
    $dirs = [
    [$this->option('dir-templates'), false],
    Severity: Minor
    Found in classes/LncFiles.php - About 1 hr to fix

      Function kqlData has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      public function kqlData(array $data, string $template, ?Page $page = null)
      {
      if (!class_exists('Kirby\\Kql\\Kql')) {
      return $data;
      }
      Severity: Minor
      Found in classes/Handlebars.php - About 45 mins to fix

      Function __construct has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

      public function __construct(array $options = [])
      {
      $defaults = [
      'debug' => option('debug'),
      'extension-output' => option('bnomei.handlebars.extension-output'),
      Severity: Minor
      Found in classes/Handlebars.php - About 45 mins to fix

      Consider simplifying this complex logical expression.
      Open

      if ($target && F::exists($target) === false) {
      $data['needsUpdate'] = true;
      } elseif ($source && $target && F::exists($target) && F::modified($source) > F::modified($target)) {
      $data['needsUpdate'] = true;
      } elseif ($source && F::modified($source) !== $data['modified']) {
      Severity: Major
      Found in classes/LncFile.php - About 40 mins to fix

        Method render has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        public function render($name, array $data = [], $root = null, $file = null, $return = false): ?string
        Severity: Minor
        Found in classes/Handlebars.php - About 35 mins to fix

          Function scan has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          public function scan(): array
          {
          $files = [];
          $dirs = [
          [$this->option('dir-templates'), false],
          Severity: Minor
          Found in classes/LncFiles.php - About 35 mins to fix

          Function precompiledTemplate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          public function precompiledTemplate($name): string
          {
          foreach ($this->files as $lncFile) {
          if ($lncFile->partial() === false && $lncFile->name() === $name) {
          $php = $lncFile->php();
          Severity: Minor
          Found in classes/LncFiles.php - About 35 mins to fix

          Function __construct has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          public function __construct(array $options = [])
          {
          $defaults = [
          'debug' => option('debug'),
          'compile-flags' => option('bnomei.handlebars.compile-flags'),
          Severity: Minor
          Found in classes/LncFiles.php - About 25 mins to fix
          Severity
          Category
          Status
          Source
          Language