lib/Ajde/Document/Format/Pdf.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '31', column '23').
Open

        $snappy = new \Knp\Snappy\Pdf(LOCAL_ROOT.'/'.VENDOR_DIR.$bin);
Severity: Minor
Found in lib/Ajde/Document/Format/Pdf.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Avoid using static access to class 'Ajde_Http_Curl' in method 'web2pdf'.
Open

        return Ajde_Http_Curl::get($api);
Severity: Minor
Found in lib/Ajde/Document/Format/Pdf.php by phpmd

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

The class Ajde_Document_Format_Pdf is not named in CamelCase.
Open

class Ajde_Document_Format_Pdf extends Ajde_Document_Format_Generated
{
    const METHOD_SNAPPY = 'snappy';
    const METHOD_WEB2PDF = 'web2pdf';

Severity: Minor
Found in lib/Ajde/Document/Format/Pdf.php by phpmd

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

There are no issues that match your filters.

Category
Status