railpage/railpagecore

View on GitHub
lib/Formatting/Html.php

Summary

Maintainability
D
1 day
Test Coverage

Function cleanupBadHtml has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

    public static function cleanupBadHtml($string, $editorVersion = 1) {
        
        $timer = Debug::getTimer(); 
            
        if (is_string($string)) {
Severity: Minor
Found in lib/Formatting/Html.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

Method cleanupBadHtml has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function cleanupBadHtml($string, $editorVersion = 1) {
        
        $timer = Debug::getTimer(); 
            
        if (is_string($string)) {
Severity: Minor
Found in lib/Formatting/Html.php - About 1 hr to fix

    The method cleanupBadHtml() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
    Open

        public static function cleanupBadHtml($string, $editorVersion = 1) {
            
            $timer = Debug::getTimer(); 
                
            if (is_string($string)) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpmd

    CyclomaticComplexity

    Since: 0.1

    Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

    Example

    // Cyclomatic Complexity = 11
    class Foo {
    1   public function example() {
    2       if ($a == $b) {
    3           if ($a1 == $b1) {
                    fiddle();
    4           } elseif ($a2 == $b2) {
                    fiddle();
                } else {
                    fiddle();
                }
    5       } elseif ($c == $d) {
    6           while ($c == $d) {
                    fiddle();
                }
    7        } elseif ($e == $f) {
    8           for ($n = 0; $n < $h; $n++) {
                    fiddle();
                }
            } else {
                switch ($z) {
    9               case 1:
                        fiddle();
                        break;
    10              case 2:
                        fiddle();
                        break;
    11              case 3:
                        fiddle();
                        break;
                    default:
                        fiddle();
                        break;
                }
            }
        }
    }

    Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

    The method cleanupBadHtml uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

                    } else {
                        $align = "right";
                        $margin = "margin-left: 1em; margin-bottom: 1em;";
                    }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpmd

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    The method cleanupBadHtml uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                $string = preg_replace('#<br\s*/?>#i', "\n", $string);
                $string = nl2br($string);
                $string = preg_replace('#<br />(\s*<br />)+#', '<br />', $string);
            }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpmd

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

            foreach (pq('h1') as $e) {
                pq($e)->replaceWith("<p><strong>".pq($e)->text()."</strong></p>");
            }
    Severity: Major
    Found in lib/Formatting/Html.php and 2 other locations - About 1 hr to fix
    lib/Formatting/Html.php on lines 109..111
    lib/Formatting/Html.php on lines 113..115

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

            foreach (pq('h3') as $e) {
                pq($e)->replaceWith("<p><strong>".pq($e)->text()."</strong></p>");
            }
    Severity: Major
    Found in lib/Formatting/Html.php and 2 other locations - About 1 hr to fix
    lib/Formatting/Html.php on lines 105..107
    lib/Formatting/Html.php on lines 109..111

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

            foreach (pq('h2') as $e) {
                pq($e)->replaceWith("<p><strong>".pq($e)->text()."</strong></p>");
            }
    Severity: Major
    Found in lib/Formatting/Html.php and 2 other locations - About 1 hr to fix
    lib/Formatting/Html.php on lines 105..107
    lib/Formatting/Html.php on lines 113..115

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 47.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

                    $replace = '<img class="border" src="'.$img_src.'" style="float:'.$align.';'.$margin.'" '.$dims.' />';
    Severity: Major
    Found in lib/Formatting/Html.php and 1 other location - About 1 hr to fix
    lib/Downloads/Index.php on lines 67..73

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 39.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 4 locations. Consider refactoring.
    Open

            if (is_string($string)) {
                $string = phpQuery::newDocumentHTML($string);
            }
    Severity: Major
    Found in lib/Formatting/Html.php and 3 other locations - About 45 mins to fix
    lib/Formatting/EmoticonsUtility.php on lines 43..45
    lib/Formatting/Html.php on lines 30..32
    lib/Formatting/MultimediaUtility.php on lines 48..50

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 26.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Identical blocks of code found in 4 locations. Consider refactoring.
    Open

            if (is_string($string)) {
                $string = phpQuery::newDocumentHTML($string);
            }
    Severity: Major
    Found in lib/Formatting/Html.php and 3 other locations - About 45 mins to fix
    lib/Formatting/EmoticonsUtility.php on lines 43..45
    lib/Formatting/Html.php on lines 101..103
    lib/Formatting/MultimediaUtility.php on lines 48..50

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 26.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

                        $dims = "width='".$width."' height='".$height."'";
    Severity: Major
    Found in lib/Formatting/Html.php and 4 other locations - About 40 mins to fix
    lib/Images/Utility/Geoplace.php on lines 50..59
    lib/Locos/Locomotive.php on lines 1047..1047
    lib/PrivateMessages/Folder.php on lines 204..211
    lib/SiteMessage/Admin.php on lines 35..35

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 23.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

                $img_src = pq($e)->attr("data");
    Severity: Major
    Found in lib/Formatting/Html.php and 8 other locations - About 30 mins to fix
    lib/Formatting/Html.php on lines 50..50
    lib/Formatting/Html.php on lines 51..51
    lib/Formatting/Html.php on lines 52..52
    lib/Formatting/MultimediaUtility.php on lines 355..355
    lib/Formatting/MultimediaUtility.php on lines 433..433
    lib/Formatting/MultimediaUtility.php on lines 470..470
    lib/ContentUtility.php on lines 362..362
    lib/Url.php on lines 163..163

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 20.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

                    $width = pq($e)->attr("width");
    Severity: Major
    Found in lib/Formatting/Html.php and 8 other locations - About 30 mins to fix
    lib/Formatting/Html.php on lines 47..47
    lib/Formatting/Html.php on lines 50..50
    lib/Formatting/Html.php on lines 52..52
    lib/Formatting/MultimediaUtility.php on lines 355..355
    lib/Formatting/MultimediaUtility.php on lines 433..433
    lib/Formatting/MultimediaUtility.php on lines 470..470
    lib/ContentUtility.php on lines 362..362
    lib/Url.php on lines 163..163

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 20.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

                    $height = pq($e)->attr("height");
    Severity: Major
    Found in lib/Formatting/Html.php and 8 other locations - About 30 mins to fix
    lib/Formatting/Html.php on lines 47..47
    lib/Formatting/Html.php on lines 50..50
    lib/Formatting/Html.php on lines 51..51
    lib/Formatting/MultimediaUtility.php on lines 355..355
    lib/Formatting/MultimediaUtility.php on lines 433..433
    lib/Formatting/MultimediaUtility.php on lines 470..470
    lib/ContentUtility.php on lines 362..362
    lib/Url.php on lines 163..163

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 20.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 9 locations. Consider refactoring.
    Open

                    $align = pq($e)->attr("align");
    Severity: Major
    Found in lib/Formatting/Html.php and 8 other locations - About 30 mins to fix
    lib/Formatting/Html.php on lines 47..47
    lib/Formatting/Html.php on lines 51..51
    lib/Formatting/Html.php on lines 52..52
    lib/Formatting/MultimediaUtility.php on lines 355..355
    lib/Formatting/MultimediaUtility.php on lines 433..433
    lib/Formatting/MultimediaUtility.php on lines 470..470
    lib/ContentUtility.php on lines 362..362
    lib/Url.php on lines 163..163

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 20.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function closing brace must go on the next line following the body; found 1 blank lines before brace
    Open

        }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Function closing brace must go on the next line following the body; found 1 blank lines before brace
    Open

        }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            //phpQuery::selectDocument($doc);
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            $string = strip_tags($string, "<a><strong><b><em><ul><ol><li><img><br><p><span><dd><dt><dl>");
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            // Parse the HTML object, clean it up
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                        $align = "left";
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                $string = nl2br($string);
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            // Replace P elements
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            foreach (pq('p') as $e) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    $width = pq($e)->attr("width");
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                pq($e)->replaceWith(pq($e)->html()."\n");
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    $align = pq($e)->attr("align");
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                        $align = "right";
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    $replace = '<img class="border" src="'.$img_src.'" style="float:'.$align.';'.$margin.'" '.$dims.' />';
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            if ($editorVersion == 1) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            //$string = phpQuery::newDocumentHTML($string);
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                $string = preg_replace('#<br />(\s*<br />)+#', '<br />', $string);
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                        $margin = "margin-right: 1em; margin-bottom: 1em;";
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            #require_once("phpQuery.php");
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    if (empty($align)) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    pq($e)->empty();
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            } elseif ($editorVersion == 2) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                $string = nl2br($string);
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            // Turn objects into images
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                $string = wpautop($string); 
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                        $margin = "margin-left: 1em; margin-bottom: 1em;";
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                        $dims = "width='".$width."' height='".$height."'";
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    pq($e)->replaceWith($replace);
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            } else {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    $height = pq($e)->attr("height");
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    } else {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    if (!empty($width) && !empty($height)) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            foreach (pq('object') as $e) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                if (stripos($img_src, "http://www.flickr.com/apps/video") === false) {
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                    
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                $img_src = pq($e)->attr("data");
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            }
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

                $string = preg_replace('#<br\s*/?>#i', "\n", $string);
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            return $string;
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    Spaces must be used to indent lines; tabs are not allowed
    Open

            
    Severity: Minor
    Found in lib/Formatting/Html.php by phpcodesniffer

    There are no issues that match your filters.

    Category
    Status