Skip to content

Commit 4506df6

Browse files
authored
Merge pull request #21 from kumamidori/feature/fix_readme_201712
fix README (module class name)
2 parents d4d0ba8 + 509b810 commit 4506df6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.JA.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Ray.WebFormModuleはアスペクト指向でフォームのバリデーション
1818

1919
```php
2020
use Ray\Di\AbstractModule;
21-
use Ray\WebFormModule\WebFormModule;
21+
use Ray\WebFormModule\AuraInputModule;
2222

2323
class AppModule extends AbstractModule
2424
{
2525
protected function configure()
2626
{
27-
$this->install(new WebFormModule);
27+
$this->install(new AuraInputModule);
2828
}
2929
}
3030
```
@@ -168,7 +168,7 @@ class FakeVndErrorModule extends AbstractModule
168168
{
169169
protected function configure()
170170
{
171-
$this->install(new WebFormModule);
171+
$this->install(new AuraInputModule);
172172
$this->override(new FormVndErrorModule);
173173
}
174174
```

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ An aspect oriented web form module powered by [Aura.Input](https://github.com/au
1818

1919
```php
2020
use Ray\Di\AbstractModule;
21-
use Ray\WebFormModule\WebFormModule;
21+
use Ray\WebFormModule\AuraInputModule;
2222

2323
class AppModule extends AbstractModule
2424
{
2525
protected function configure()
2626
{
27-
$this->install(new WebFormModule);
27+
$this->install(new AuraInputModule);
2828
}
2929
}
3030
```
@@ -162,7 +162,7 @@ class FakeVndErrorModule extends AbstractModule
162162
{
163163
protected function configure()
164164
{
165-
$this->install(new WebFormModule);
165+
$this->install(new AuraInputModule);
166166
$this->override(new FormVndErrorModule);
167167
}
168168
```

0 commit comments

Comments
 (0)