Skip to content

Commit

Permalink
phpcs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Apr 30, 2020
1 parent 470efed commit 63affda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/DoctrineMongoODMModule/Options/Configuration.php
Expand Up @@ -476,12 +476,12 @@ public function setRepositoryFactory(?string $repositoryFactory) : Configuration
return $this;
}

public function getDefaultDocumentRepositoryClassName()
public function getDefaultDocumentRepositoryClassName() : string
{
return $this->defaultDocumentRepositoryClassName;
}

public function setDefaultDocumentRepositoryClassName(string $defaultDocumentRepositoryClassName)
public function setDefaultDocumentRepositoryClassName(string $defaultDocumentRepositoryClassName) : self
{
$this->defaultDocumentRepositoryClassName = $defaultDocumentRepositoryClassName;

Expand Down
Expand Up @@ -68,9 +68,6 @@ public function createService(ServiceLocatorInterface $container)
return $this($container, MongoLoggerCollector::class);
}

/**
* {@inheritDoc}
*/
public function getOptionsClass() : string
{
return Options\MongoLoggerCollector::class;
Expand Down

0 comments on commit 63affda

Please sign in to comment.