@@ -14,27 +14,27 @@ Provided functions:
1414``` php
1515// Simple direct Model connections
1616
17- // Single connection
17+ // To one
1818$this->tagOne(TargetModel): HasOneThrough
19- // Single connection reversed
19+ // To one inversed
2020$this->tagOneInverse(SourceModel): HasOneThrough
2121
2222// To many
2323$this->tagMany(TargetModel): HasManyThrough
24- // To many reversed
24+ // To many inversed
2525$this->tagManyInverse(SourceModel): HasManyThrough
2626
2727// Neuron mapping of connections
2828
2929// To one through a Neuron categorized connection
30- $this->tagOneThrough(Category, [Categorie Ids], TargetModel): HasOne
30+ $this->tagOneThrough(Category, [Category Ids], TargetModel): HasOne
3131// To one through an inversed Neuron categorized connection
32- $this->tagOneThroughInverse(Category, [Categorie Ids], SourceModel): HasOne
32+ $this->tagOneThroughInverse(Category, [Category Ids], SourceModel): HasOne
3333
3434// To many through a Neuron categorized connection
35- $this->tagManyThrough(Category, [Categories ], TargetModel): HasMany
35+ $this->tagManyThrough(Category, [Category Ids ], TargetModel): HasMany
3636// To many through an inversed Neuron categorized connection
37- $this->tagManyThroughInverse(Category, [Categories ], SourceModel): HasMany
37+ $this->tagManyThroughInverse(Category, [Category Ids ], SourceModel): HasMany
3838```
3939
4040Octopus is open-sourced software licensed under the [ MIT license] ( https://opensource.org/licenses/MIT ) .
0 commit comments