Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #84 from malukenho/hotfix/import-missing-class
Browse files Browse the repository at this point in the history
Hot Fix wrong namespace usage
  • Loading branch information
weierophinney committed Apr 25, 2018
2 parents 78ead83 + 9d9e808 commit 23e71c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/Translator/LoaderPluginManagerCompatibilityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
namespace ZendTest\I18n\Translator;

use PHPUnit\Framework\TestCase;
use Zend\Filter\FilterInterface;
use Zend\I18n\Exception\RuntimeException;
use Zend\I18n\Translator\LoaderPluginManager;
use Zend\ServiceManager\ServiceManager;
Expand All @@ -31,7 +32,7 @@ protected function getV2InvalidPluginException()

protected function getInstanceOf()
{
return Filter\FilterInterface::class;
return FilterInterface::class;
}

public function testInstanceOfMatches()
Expand Down

0 comments on commit 23e71c7

Please sign in to comment.