budde377/Part

View on GitHub
lib/controller/ajax/ServerImpl.php

Summary

Maintainability
B
6 hrs
Test Coverage

Function internalHandleProgram has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

    private function internalHandleProgram(Program $input)
    {
        $result = null;
        if ($input instanceof CompositeFunction) {

Severity: Minor
Found in lib/controller/ajax/ServerImpl.php - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

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

    private function handle(array $types, JSONFunction $function, $instance = null, $generatedHandler = null)
    {
        foreach ($types as $type) {

            if ($generatedHandler instanceof TypeHandler) {
Severity: Minor
Found in lib/controller/ajax/ServerImpl.php - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function registerHandlersFromConfig has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    public function registerHandlersFromConfig()
    {
        $config = $this->container->getConfigInstance();
        foreach ($config->getAJAXTypeHandlers() as $handlerArray) {

Severity: Minor
Found in lib/controller/ajax/ServerImpl.php - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

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

    private function wrapperHandler($input, $token)
    {

        if (!$this->container->getUserLibraryInstance()->verifyUserSessionToken($token)) {
            return new ResponseImpl(Response::RESPONSE_TYPE_ERROR, Response::ERROR_CODE_UNAUTHORIZED);
Severity: Minor
Found in lib/controller/ajax/ServerImpl.php - About 35 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

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

    private function internalHandleArguments(JSONFunction $function)
    {
        $args = [];
        foreach ($function->getArgs() as $arg) {
            if (!($arg instanceof Program)) {
Severity: Minor
Found in lib/controller/ajax/ServerImpl.php - About 25 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

There are no issues that match your filters.

Category
Status