phpffcms/ffcms-core

View on GitHub

Showing 54 of 54 total issues

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

    private function runRouteBinding(): void
    {
        // calculated depend of language
        $pathway = $this->getPathInfo();
        /** @var array $routing */
Severity: Minor
Found in src/Network/Request/RouteMapFeatures.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

Avoid too many return statements within this method.
Open

            return App::$Translate->get('DateHuman', '%m% minutes ago', ['m' => $deltaMin]);
Severity: Major
Found in src/Helper/Date.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                    return var_export($var, true);
    Severity: Major
    Found in src/Helper/Type/Arr.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

              return App::$Translate->get('DateHuman', '%s% seconds ago', ['s' => $deltaSec]);
      Severity: Major
      Found in src/Helper/Date.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                    return App::$Translate->get('DateHuman', '%h% hours ago', ['h' => $deltaHour]);
        Severity: Major
        Found in src/Helper/Date.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          return $var ? 'true' : 'false';
          Severity: Major
          Found in src/Helper/Type/Arr.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                    return true;
            Severity: Major
            Found in src/Helper/ModelFilters.php - About 30 mins to fix

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

                  public function __construct($loader = false)
                  {
                      $this->startMeasure(__METHOD__);
                      // pass loader inside
                      $this->loader = $loader;
              Severity: Minor
              Found in src/Managers/BootManager.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

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

                  private function getFieldValue($propertyName)
                  {
                      // get type of input data (where we must look it up)
                      $inputType = Str::lowerCase($this->_sendMethod);
                      $filterType = 'text';
              Severity: Minor
              Found in src/Traits/ModelValidator.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

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

                  public function send(string $address, string $subject, ?string $message = null): bool
                  {
                      // try to get message from global if not passed direct
                      if (!$message) {
                          $message = $this->message;
              Severity: Minor
              Found in src/Helper/Mailer.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

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

                  public function initialize($csrf = false)
                  {
                      $this->_tokenRequired = $csrf;
                      if ($csrf) {
                          // get current token value from session
              Severity: Minor
              Found in src/Traits/ModelValidator.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

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

                  private function searchRedirect(): void
                  {
                      // calculated depend of language
                      $pathway = $this->getPathInfo();
                      /** @var array $routing */
              Severity: Minor
              Found in src/Network/Request/MvcFeatures.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

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

                  public static function getByPath(string $path, ?array $array = null, $delimiter = '.')
                  {
                      // path of nothing? interest
                      if (!Any::isArray($array) || count($array) < 1 || !Any::isStr($path) || Str::likeEmpty($path)) {
                          return null;
              Severity: Minor
              Found in src/Helper/Type/Arr.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

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

                  public static function sizeFile($object, $value): bool
                  {
                      // allow empty field, validate on filter 'required'
                      if ($object === null) {
                          return true;
              Severity: Minor
              Found in src/Helper/ModelFilters.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

              Severity
              Category
              Status
              Source
              Language