Stand: SMTP-Test, Admin-Mail-Tab, Notifiable-Fix, Lazy-Quill
- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
133
vendor/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php
vendored
Executable file
133
vendor/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php
vendored
Executable file
@@ -0,0 +1,133 @@
|
||||
<?php declare(strict_types=1);
|
||||
/*
|
||||
* This file is part of sebastian/complexity.
|
||||
*
|
||||
* (c) Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
namespace SebastianBergmann\Complexity;
|
||||
|
||||
use function assert;
|
||||
use function is_array;
|
||||
use PhpParser\Node;
|
||||
use PhpParser\Node\Expr\New_;
|
||||
use PhpParser\Node\Name;
|
||||
use PhpParser\Node\Stmt;
|
||||
use PhpParser\Node\Stmt\Class_;
|
||||
use PhpParser\Node\Stmt\ClassMethod;
|
||||
use PhpParser\Node\Stmt\Function_;
|
||||
use PhpParser\Node\Stmt\Interface_;
|
||||
use PhpParser\Node\Stmt\Trait_;
|
||||
use PhpParser\NodeTraverser;
|
||||
use PhpParser\NodeVisitor;
|
||||
use PhpParser\NodeVisitorAbstract;
|
||||
|
||||
final class ComplexityCalculatingVisitor extends NodeVisitorAbstract
|
||||
{
|
||||
/**
|
||||
* @var list<Complexity>
|
||||
*/
|
||||
private array $result = [];
|
||||
private bool $shortCircuitTraversal;
|
||||
|
||||
public function __construct(bool $shortCircuitTraversal)
|
||||
{
|
||||
$this->shortCircuitTraversal = $shortCircuitTraversal;
|
||||
}
|
||||
|
||||
public function enterNode(Node $node): ?int
|
||||
{
|
||||
if (!$node instanceof ClassMethod && !$node instanceof Function_) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if ($node instanceof ClassMethod) {
|
||||
if ($node->getAttribute('parent') instanceof Interface_) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if ($node->isAbstract()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$name = $this->classMethodName($node);
|
||||
} else {
|
||||
$name = $this->functionName($node);
|
||||
}
|
||||
|
||||
$statements = $node->getStmts();
|
||||
|
||||
assert(is_array($statements));
|
||||
|
||||
$this->result[] = new Complexity(
|
||||
$name,
|
||||
$this->cyclomaticComplexity($statements),
|
||||
);
|
||||
|
||||
if ($this->shortCircuitTraversal) {
|
||||
return NodeVisitor::DONT_TRAVERSE_CHILDREN;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public function result(): ComplexityCollection
|
||||
{
|
||||
return ComplexityCollection::fromList(...$this->result);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Stmt[] $statements
|
||||
*
|
||||
* @return positive-int
|
||||
*/
|
||||
private function cyclomaticComplexity(array $statements): int
|
||||
{
|
||||
$traverser = new NodeTraverser;
|
||||
|
||||
$cyclomaticComplexityCalculatingVisitor = new CyclomaticComplexityCalculatingVisitor;
|
||||
|
||||
$traverser->addVisitor($cyclomaticComplexityCalculatingVisitor);
|
||||
|
||||
/* @noinspection UnusedFunctionResultInspection */
|
||||
$traverser->traverse($statements);
|
||||
|
||||
return $cyclomaticComplexityCalculatingVisitor->cyclomaticComplexity();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return non-empty-string
|
||||
*/
|
||||
private function classMethodName(ClassMethod $node): string
|
||||
{
|
||||
$parent = $node->getAttribute('parent');
|
||||
|
||||
assert($parent instanceof Class_ || $parent instanceof Trait_);
|
||||
|
||||
if ($parent->getAttribute('parent') instanceof New_) {
|
||||
return 'anonymous class';
|
||||
}
|
||||
|
||||
assert(isset($parent->namespacedName));
|
||||
assert($parent->namespacedName instanceof Name);
|
||||
|
||||
return $parent->namespacedName->toString() . '::' . $node->name->toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return non-empty-string
|
||||
*/
|
||||
private function functionName(Function_ $node): string
|
||||
{
|
||||
assert(isset($node->namespacedName));
|
||||
assert($node->namespacedName instanceof Name);
|
||||
|
||||
$functionName = $node->namespacedName->toString();
|
||||
|
||||
assert($functionName !== '');
|
||||
|
||||
return $functionName;
|
||||
}
|
||||
}
|
||||
61
vendor/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php
vendored
Executable file
61
vendor/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php
vendored
Executable file
@@ -0,0 +1,61 @@
|
||||
<?php declare(strict_types=1);
|
||||
/*
|
||||
* This file is part of sebastian/complexity.
|
||||
*
|
||||
* (c) Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
namespace SebastianBergmann\Complexity;
|
||||
|
||||
use PhpParser\Node;
|
||||
use PhpParser\Node\Expr\BinaryOp\BooleanAnd;
|
||||
use PhpParser\Node\Expr\BinaryOp\BooleanOr;
|
||||
use PhpParser\Node\Expr\BinaryOp\LogicalAnd;
|
||||
use PhpParser\Node\Expr\BinaryOp\LogicalOr;
|
||||
use PhpParser\Node\Expr\Ternary;
|
||||
use PhpParser\Node\Stmt\Case_;
|
||||
use PhpParser\Node\Stmt\Catch_;
|
||||
use PhpParser\Node\Stmt\ElseIf_;
|
||||
use PhpParser\Node\Stmt\For_;
|
||||
use PhpParser\Node\Stmt\Foreach_;
|
||||
use PhpParser\Node\Stmt\If_;
|
||||
use PhpParser\Node\Stmt\While_;
|
||||
use PhpParser\NodeVisitorAbstract;
|
||||
|
||||
final class CyclomaticComplexityCalculatingVisitor extends NodeVisitorAbstract
|
||||
{
|
||||
/**
|
||||
* @var positive-int
|
||||
*/
|
||||
private int $cyclomaticComplexity = 1;
|
||||
|
||||
public function enterNode(Node $node): void
|
||||
{
|
||||
switch ($node::class) {
|
||||
case BooleanAnd::class:
|
||||
case BooleanOr::class:
|
||||
case Case_::class:
|
||||
case Catch_::class:
|
||||
case ElseIf_::class:
|
||||
case For_::class:
|
||||
case Foreach_::class:
|
||||
case If_::class:
|
||||
case LogicalAnd::class:
|
||||
case LogicalOr::class:
|
||||
case Node\MatchArm::class:
|
||||
case Ternary::class:
|
||||
case While_::class:
|
||||
$this->cyclomaticComplexity++;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return positive-int
|
||||
*/
|
||||
public function cyclomaticComplexity(): int
|
||||
{
|
||||
return $this->cyclomaticComplexity;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user