File LncFiles.php
has 267 lines of code (exceeds 250 allowed). Consider refactoring.
<?php
declare(strict_types=1);
namespace Bnomei;
Function php
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
public function php(string $php = null): ?string
{
if ($php === null) {
if ($this->target() && A::get($this->data, 'lnc') && F::exists($this->target())) {
Function registerAllTemplates
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
public function registerAllTemplates(): array
{
$this->files = $this->load();
$anyPartialNeedsUpdate = false;
Method scan
has 26 lines of code (exceeds 25 allowed). Consider refactoring.
public function scan(): array
{
$files = [];
$dirs = [
[$this->option('dir-templates'), false],
Function kqlData
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
public function kqlData(array $data, string $template, ?Page $page = null)
{
if (!class_exists('Kirby\\Kql\\Kql')) {
return $data;
}
Function __construct
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
public function __construct(array $options = [])
{
$defaults = [
'debug' => option('debug'),
'extension-output' => option('bnomei.handlebars.extension-output'),
Consider simplifying this complex logical expression.
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']) {
Method render
has 5 arguments (exceeds 4 allowed). Consider refactoring.
public function render($name, array $data = [], $root = null, $file = null, $return = false): ?string
Function scan
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
public function scan(): array
{
$files = [];
$dirs = [
[$this->option('dir-templates'), false],
Function precompiledTemplate
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
public function precompiledTemplate($name): string
{
foreach ($this->files as $lncFile) {
if ($lncFile->partial() === false && $lncFile->name() === $name) {
$php = $lncFile->php();
Function __construct
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
public function __construct(array $options = [])
{
$defaults = [
'debug' => option('debug'),
'compile-flags' => option('bnomei.handlebars.compile-flags'),