Skip to content

Commit

Permalink
Various tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Wolf committed Jul 4, 2018
1 parent 318a9eb commit cf2a7db
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Install the module through [Composer](http://getcomposer.org/) using the followi
```json
{
"require": {
"detailnet/dfw-normalization-module": "^1.0"
"detailnet/dfw-normalization-module": "^1.1"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions config/detail_normalization.local.php.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

return array(
return [
'detail_normalization' => [],
);
];
3 changes: 2 additions & 1 deletion src/Factory/Options/ModuleOptionsFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

use Detail\Normalization\Options\ModuleOptions;

class ModuleOptionsFactory implements FactoryInterface
class ModuleOptionsFactory implements
FactoryInterface
{
const OPTION = 'detail_normalization';

Expand Down
3 changes: 3 additions & 0 deletions src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
class Module implements
ConfigProviderInterface
{
/**
* @return array|\Traversable
*/
public function getConfig()
{
return include __DIR__ . '/../config/module.config.php';
Expand Down

0 comments on commit cf2a7db

Please sign in to comment.