filestack/filestack-php

View on GitHub

Showing 91 of 92 total issues

Avoid unused local variables such as '$max_retries'.
Open

        $max_retries = FilestackConfig::MAX_RETRIES;
Severity: Minor
Found in filestack/UploadProcessor.php by phpmd

UnusedLocalVariable

Since: 0.2

Detects when a local variable is declared and/or assigned, but not used.

Example

class Foo {
    public function doSomething()
    {
        $i = 5; // Unused
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable

Avoid using static access to class '\Filestack\HttpStatusCodes' in method 'processChunks'.
Open

                    if (HttpStatusCodes::isServerError($status_code)) {
Severity: Minor
Found in filestack/UploadProcessor.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

Avoid using static access to class '\Filestack\HttpStatusCodes' in method 'testIsServerError'.
Open

        $result = HttpStatusCodes::isServerError(500);
Severity: Minor
Found in tests/HttpStatusCodesTest.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

Avoid using static access to class '\Filestack\HttpStatusCodes' in method 'testIsTimeoutError'.
Open

        $result3 = HttpStatusCodes::isNetworkError(504);
Severity: Minor
Found in tests/HttpStatusCodesTest.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

Avoid using static access to class '\Filestack\HttpStatusCodes' in method 'testGetMessage'.
Open

        $message = HttpStatusCodes::getMessage(200);
Severity: Minor
Found in tests/HttpStatusCodesTest.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

Avoid using static access to class '\Filestack\HttpStatusCodes' in method 'testIsError'.
Open

        $result = HttpStatusCodes::isError(400);
Severity: Minor
Found in tests/HttpStatusCodesTest.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

Avoid using static access to class '\Filestack\HttpStatusCodes' in method 'processChunks'.
Open

                    if (HttpStatusCodes::isNetworkError($status_code) ||
Severity: Minor
Found in filestack/UploadProcessor.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 method sendOverwrite uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        else {
            // local file
            $data['body'] = fopen($resource, 'r');
        }
Severity: Minor
Found in filestack/mixins/CommonMixin.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 processParts uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

            else {
                $part_num = array_key_exists('part_num', $part) ?
                    $part['part_num'] : 1;

                $this->multipartGetTags($part_num, $s3_results, $parts_etags);
Severity: Minor
Found in filestack/UploadProcessor.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

Avoid using Filestack\count() function in for loops.
Open

        for($i=0; $i<count($chunks); $i++) {
            $current_chunk = $chunks[$i];
            $seek_point = $current_chunk['seek_point'];

            $chunk_content = $this->getChunkContent($part['filepath'], $seek_point,
Severity: Minor
Found in filestack/UploadProcessor.php by phpmd

CountInLoopExpression

Since: 2.7.0

Using count/sizeof in loops expressions is considered bad practice and is a potential source of many bugs, especially when the loop manipulates an array, as count happens on each iteration.

Example

class Foo {

  public function bar()
  {
    $array = array();

    for ($i = 0; count($array); $i++) {
      // ...
    }
  }
}

Source https://phpmd.org/rules/design.html#countinloopexpression

The method get_retry_miliseconds is not named in camelCase.
Open

    public function get_retry_miliseconds($retry_num)
    {
        // (2^retries * 100) milliseconds
        return pow(2, $retry_num) * 100;
    }
Severity: Minor
Found in filestack/mixins/CommonMixin.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

Severity
Category
Status
Source
Language