Skip to content

Commit

Permalink
Fix grammar
Browse files Browse the repository at this point in the history
Fixes #888
  • Loading branch information
rquadling committed Jul 6, 2016
1 parent 51bda5c commit 9481e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Phinx/Db/Adapter/AdapterFactory.php
Expand Up @@ -91,7 +91,7 @@ public function registerAdapter($name, $class)
{
if (!is_subclass_of($class, 'Phinx\Db\Adapter\AdapterInterface')) {
throw new \RuntimeException(sprintf(
'Adapter class "%s" must be implement Phinx\\Db\\Adapter\\AdapterInterface',
'Adapter class "%s" must implement Phinx\\Db\\Adapter\\AdapterInterface',
$class
));
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Phinx/Db/Adapter/AdapterFactoryTest.php
Expand Up @@ -41,7 +41,7 @@ public function testRegisterAdapter()

/**
* @expectedException \RuntimeException
* @expectedExceptionMessage Adapter class "Test\Phinx\Db\Adapter\AdapterFactoryTest" must be implement Phinx\Db\Adapter\AdapterInterface
* @expectedExceptionMessage Adapter class "Test\Phinx\Db\Adapter\AdapterFactoryTest" must implement Phinx\Db\Adapter\AdapterInterface
*/
public function testRegisterAdapterFailure()
{
Expand Down

0 comments on commit 9481e0e

Please sign in to comment.