strata-mvc/strata

View on GitHub

Showing 158 of 158 total issues

Avoid too many return statements within this method.
Open

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

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

        protected function queueRewrite($routeUrl, $slug, $locale = null)
        {
            $queryVar = $this->getRewriteIdentifier();
    
            $localeUrl = null;
    Severity: Minor
    Found in src/Router/Registrar/RouteMakerBase.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 register has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public function register()
        {
            if ($this->model->hasTaxonomies()) {
                foreach ($this->model->getTaxonomies() as $taxonomy) {
                    $this->registerTaxonomy($taxonomy);
    Severity: Minor
    Found in src/Model/CustomPostType/Registrar/TaxonomyRegistrar.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 wrap has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function wrap($text, $options = array())
        {
            if (is_numeric($options)) {
                $options = array('width' => $options);
            }
    Severity: Minor
    Found in src/Utility/StringUtility.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 loadComposerMiddlewares has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        private function loadComposerMiddlewares()
        {
            // Load middlewares registered through Composer.
            $namespaceRegex = "^(Strata|" . preg_quote(Strata::getNamespace()) . ")";
            foreach ($this->classLoader->getPrefixesPsr4() as $prefix => $path) {
    Severity: Minor
    Found in src/Middleware/MiddlewareLoader.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 loadProjectMiddlewares has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        private function loadProjectMiddlewares()
        {
            $possibleMiddlewareLoaders = glob(Strata::getMiddlewarePath() . "*Initializer.php");
            $namespace = Strata::getNamespace() . "\\Middleware\\";
    
    
    Severity: Minor
    Found in src/Middleware/MiddlewareLoader.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 testExclusion has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        private function testExclusion($value, $context)
        {
            if ($this->hasConfig("min")) {
                $min = $this->getConfig("min");
                if (round($value) < round($min)) {
    Severity: Minor
    Found in src/Model/Validator/BetweenValidator.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 getCurrentValue has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function getCurrentValue($key)
        {
            $key = $this->removeBrackets($key);
    
            if ($this->getConfig('method') === "GET" && $this->request->hasGet($key)) {
    Severity: Minor
    Found in src/View/Helper/FormHelper.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 testInclusion has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        private function testInclusion($value, $context)
        {
            if ($this->hasConfig("min")) {
                $min = $this->getConfig("min");
                if (round($value) <= round($min)) {
    Severity: Minor
    Found in src/Model/Validator/BetweenValidator.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 assignRequest has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public function assignRequest(Request $request)
        {
            $extracted = $this->extractData($request);
    
            if (count($extracted)) {
    Severity: Minor
    Found in src/Model/CustomPostType/ModelEntity.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 extractLocalizedInformation has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function extractLocalizedInformation()
        {
            foreach ($this->getLocales() as $locale) {
                $localeCode = $locale->getCode();
                foreach ($this->model->routed['rewrite'] as $routeKey => $routeUrl) {
    Severity: Minor
    Found in src/Router/Registrar/PageRouteMaker.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 generateInlineErrors has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public function generateInlineErrors($postName)
        {
            if (!is_null($this->associatedEntity)) {
                $errors = (array)$this->associatedEntity->getValidationErrors();
    
    
    Severity: Minor
    Found in src/View/Helper/FormHelper.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 parseObject has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public function parseObject($model)
        {
            $this->model = $model;
            $this->defaultSlug = $model->getConfig('rewrite.slug');
    
    
    Severity: Minor
    Found in src/Router/Registrar/CustomPostTypeRouteMaker.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 generateClassName has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function generateClassName($name)
        {
            $name = str_replace("-", "_", $name);
    
            if (strstr($name, "\\")) {
    Severity: Minor
    Found in src/Core/StrataObjectTrait.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 test has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public function test($value, $context)
        {
            $length = $this->figureOutLength($value);
    
            if ($this->hasConfig("min")) {
    Severity: Minor
    Found in src/Model/Validator/LengthValidator.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 register has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public function register()
        {
            if ($this->hasShortcodes()) {
                foreach ($this->shortcodes as $shortcode => $methodName) {
                    if (method_exists($this->controller, $methodName)) {
    Severity: Minor
    Found in src/Controller/Loader/ShortcodeLoader.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 writeThemesDocumentation has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function writeThemesDocumentation($info)
        {
            $header = '<!DOCTYPE html><html><head><meta charset="utf-8"><title>Overview</title>';
            $header .= '<link rel="stylesheet" href="../api/resources/style.css">';
            $header .= '</head><body><div id="content">';
    Severity: Minor
    Found in src/Shell/Command/DocumentationCommand.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 dimensions has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function dimensions(array $data)
        {
            if (empty($data)) {
                return 0;
            }
    Severity: Minor
    Found in src/Utility/Hash.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