Completed
Push — master ( 2bd67e...423e5d )
by Taosikai
37:51 queued 22:49
created

Tests/RegisterTest.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
namespace Slince\Upload\Tests;
3
4
use PHPUnit\Framework\TestCase;
5
use Slince\Upload\Registry;
6
7
class RegisterTest extends TestCase
8
{
9
    function testPolyfill()
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
10
    {
11
        $this->assertTrue(class_exists(Registry::class));
12
    }
13
}
14