Skip to content

Commit

Permalink
pkp/pkp-lib#2163 Rename AuthorService in pkp-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
NateWr committed Oct 19, 2017
1 parent bd072e5 commit e6b8d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/services/OMPServiceProvider.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
require_once(dirname(__FILE__) . '/../../lib/pkp/lib/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php');

use \Pimple\Container;
use \PKP\Services\PKPAuthorService;
use \PKP\Services\AuthorService;

class OMPServiceProvider implements \Pimple\ServiceProviderInterface {

Expand All @@ -41,7 +41,7 @@ public function register(Container $pimple) {

// Author service
$pimple['author'] = function() {
return new PKPAuthorService();
return new AuthorService();
};

}
Expand Down

0 comments on commit e6b8d04

Please sign in to comment.