fix class names and typos

This commit is contained in:
Dennis Eichhorn 2021-10-03 09:27:46 +02:00
parent 0d63731697
commit b62b46ad3c
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ use phpOMS\Application\UninstallerAbstract;
* @link https://orange-management.org * @link https://orange-management.org
* @since 1.0.0 * @since 1.0.0
*/ */
final class Installer extends InstallerAbstract final class Uninstaller extends UninstallerAbstract
{ {
/** /**
* Path of the file * Path of the file

View File

@ -153,8 +153,8 @@ class RedisCacheTest extends \PHPUnit\Framework\TestCase
$result = $this->cache->getLike('key\d'); $result = $this->cache->getLike('key\d');
self::assertEquals(2, \count($result)); self::assertEquals(2, \count($result));
self::assertTrue(\in_array('testVal1', $result)) self::assertTrue(\in_array('testVal1', $result));
self::assertTrue(\in_array('testVal2', $result)) self::assertTrue(\in_array('testVal2', $result));
} }
public function testExpiredGetLike() : void public function testExpiredGetLike() : void