Skip to content

Commit 354af1b

Browse files
committed
Fixing doc relative link paths
1 parent a7a38fa commit 354af1b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/AGENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var_dump($members);
6363

6464
### Register Service
6565

66-
To register a service, you must first create an [AgentServiceRegistration](./src/Agent/AgentServiceRegistration.php)
66+
To register a service, you must first create an [AgentServiceRegistration](../src/Agent/AgentServiceRegistration.php)
6767
object. Below is a quick and sloppy example that also creates a check:
6868

6969
```php
@@ -94,7 +94,7 @@ if (null !== $err)
9494

9595
### Register Agent Check
9696

97-
To register an agent check, you must first create an [AgentCheckRegistration](./src/Agent/AgentCheckRegistration.php)
97+
To register an agent check, you must first create an [AgentCheckRegistration](../src/Agent/AgentCheckRegistration.php)
9898
object. Below is a quick and sloppy example:
9999

100100
```php

docs/CATALOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $catalog = $client->Catalog;
1515

1616
### Register Node, Service, or Check
1717

18-
For this endpoint, you must first create a [CatalogRegistration](./src/Catalog/CatalogRegistration.php)
18+
For this endpoint, you must first create a [CatalogRegistration](../src/Catalog/CatalogRegistration.php)
1919
object. Below is a quick example on how to do this with a Service:
2020

2121
```php
@@ -40,7 +40,7 @@ var_dump($wm);
4040

4141
### Deregister Node, Service, or Check
4242

43-
For this endpoint, you must first create a [CatalogDeregistration](./src/Catalog/CatalogDeregistration.php)
43+
For this endpoint, you must first create a [CatalogDeregistration](../src/Catalog/CatalogDeregistration.php)
4444
object. Below is an example of how to deregister the service created above:
4545

4646
```php

docs/EVENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $event = $client->Event;
1313

1414
### Fire an Event
1515

16-
In order to fire an event, you must first create an [UserEvent](./src/Event/UserEvent.php)
16+
In order to fire an event, you must first create an [UserEvent](../src/Event/UserEvent.php)
1717
object.
1818

1919
Below is a quick example:

docs/KV.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ var_dump($wm);
7777
This is a custom feature to allow `get-tree`-like functionality with 0.6.4 (the current release as of this writing)
7878

7979
This call executes a `$client->KV->keys()` call, parses the results, and builds an object tree of
80-
[KVTree](./src/KV/KVTree.php) and [KVPair](./src/KV/KVPair.php) objects.
80+
[KVTree](../src/KV/KVTree.php) and [KVPair](../src/KV/KVPair.php) objects.
8181

8282
*Entire Tree - POTENTIALLY VERY SLOW!!!!!!*
8383
```php

0 commit comments

Comments
 (0)