You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/factory.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Utils\Factory
1
+
# Factory
2
2
[Back to Navigation](README.md)
3
3
4
4
The `Art4\JsonApiClient\V1\Factory` provides a simple way to override [all objects](objects-introduction.md#all-objects) by injecting your own classes.
Copy file name to clipboardExpand all lines: docs/manager.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Manager
2
2
[Back to Navigation](README.md)
3
3
4
-
The `Art4\JsonApiClient\Manager` can be used to parse a JSON API input and to inject a [Factory](utils-factory.md) for overriding classes.
4
+
The `Art4\JsonApiClient\Manager` can be used to parse a JSON API input and to inject a [Factory](factory.md) for overriding classes.
5
5
6
6
The `Art4\JsonApiClient\Manager` needs a `Art4\JsonApiClient\Input\Input` instance for parsing. The Input instance is a normalizer that provides the JSON API as a simple object with public attributes like `\stdClass`.
7
7
@@ -67,7 +67,7 @@ This returns a [Document](objects-document.md) object which provided all content
67
67
68
68
### Working with a factory
69
69
70
-
You can set a custom [Factory](utils-factory.md) to the manager through the constructor.
70
+
You can set a custom [Factory](factory.md) to the manager through the constructor.
71
71
72
72
```php
73
73
use Art4\JsonApiClient\Manager\ErrorAbortManager;
@@ -83,4 +83,4 @@ You can call `getFactory()` to get the setted factory.
0 commit comments