classes/RDFIO_CreatePagesOnInstall.php

Summary

Maintainability
A
1 hr
Test Coverage

Method create has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function create() {

        $wikiPageData = array(
            'Category:RDFIO Data Source' => array(
                'title' => 'RDFIO Data Source',
Severity: Minor
Found in classes/RDFIO_CreatePagesOnInstall.php - About 1 hr to fix

    Avoid using static access to class 'WikiPage' in method 'create'.
    Open

                $pageObj = WikiPage::factory( $pageTitleObj );

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'Title' in method 'create'.
    Open

                $pageTitleObj = Title::newFromText( $pageTitle );

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    There are no issues that match your filters.

    Category
    Status