mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-13 23:28:39 +00:00
fix class names and typos
This commit is contained in:
parent
0d63731697
commit
b62b46ad3c
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user