Skip to content

Commit 593b78e

Browse files
authored
Merge pull request #88 from Art4/75-remove-docs-for-deprecated-code
remove deprecated docs from 0.x versions
2 parents 58d21e2 + 1204492 commit 593b78e

File tree

6 files changed

+6
-153
lines changed

6 files changed

+6
-153
lines changed

docs/README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Take a look at the [Parser](helper-parser.md) to quickstart with JsonApiClient.
77
### Helper Tools:
88
* [Parser](helper-parser.md)
99
* [Manager](manager.md)
10-
* [Factory](utils-factory.md)
10+
* [Factory](factory.md)
1111
* [Exceptions](exception-introduction.md)
1212

1313
### Objects:
@@ -30,7 +30,3 @@ Take a look at the [Parser](helper-parser.md) to quickstart with JsonApiClient.
3030
* [Error Link object](objects-error-link.md)
3131
* [Jsonapi object](objects-jsonapi.md)
3232
* [Meta object](objects-meta.md)
33-
34-
### Deprecated Utils:
35-
* [Manager](utils-manager.md)
36-
* [Helper](utils-helper.md)

docs/utils-factory.md renamed to docs/factory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Utils\Factory
1+
# Factory
22
[Back to Navigation](README.md)
33

44
The `Art4\JsonApiClient\V1\Factory` provides a simple way to override [all objects](objects-introduction.md#all-objects) by injecting your own classes.

docs/manager.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Manager
22
[Back to Navigation](README.md)
33

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.
55

66
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`.
77

@@ -67,7 +67,7 @@ This returns a [Document](objects-document.md) object which provided all content
6767

6868
### Working with a factory
6969

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.
7171

7272
```php
7373
use Art4\JsonApiClient\Manager\ErrorAbortManager;
@@ -83,4 +83,4 @@ You can call `getFactory()` to get the setted factory.
8383
$factory = $manager->getFactory();
8484
```
8585

86-
Learn more about the [Factory](utils-factory.md).
86+
Learn more about the [Factory](factory.md).

docs/objects-introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ You can get all data as an array using the [ArraySerializer](serializer.md#array
135135

136136
### Need more?
137137

138-
If you need more opportunities to get the values take a look at the [Factory](utils-factory.md) to inject more functionality.
138+
If you need more opportunities to get the values take a look at the [Factory](factory.md) to inject more functionality.

docs/utils-helper.md

-80
This file was deleted.

docs/utils-manager.md

-63
This file was deleted.

0 commit comments

Comments
 (0)