Skip to content

Commit 7220234

Browse files
committed
TWeak paths
1 parent ded2a5c commit 7220234

12 files changed

+17
-17
lines changed

docs/base_collectors.md renamed to docs/collectors/base.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Collectors provided in the `DebugBar\DataCollector` namespace.
88
Provides a way to log messages (compatible with [PSR-3 logger](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)).
99
You can call the `useHtmlVarDumper()` function to use VarDumper's interactive HTML dumper for
1010
interactively rendering complex variables. If you do that, you must properly render
11-
[inline assets](rendering.md#assets) when rendering the debug bar in addition to the normal js/css
11+
[inline assets](../docs/rendering.md#assets) when rendering the debug bar in addition to the normal js/css
1212
static assets.
1313

1414
$c = new DebugBar\DataCollector\MessagesCollector();
@@ -88,7 +88,7 @@ If you want to see your PDO requests in the TimeDataCollector, you must add the
8888

8989
Collects the data of PHP's global variables. You can call the `useHtmlVarDumper()` function to use
9090
VarDumper's interactive HTML dumper for rendering the variables. If you do that, you must properly
91-
render [inline assets](rendering.md#assets) when rendering the debug bar in addition to the normal
91+
render [inline assets](../docs/rendering.md#assets) when rendering the debug bar in addition to the normal
9292
js/css static assets.
9393

9494
$requestDataCollector = new DebugBar\DataCollector\RequestDataCollector();
@@ -99,7 +99,7 @@ js/css static assets.
9999

100100
Used to display any key/value pairs array. You can call the `useHtmlVarDumper()` function to use
101101
VarDumper's interactive HTML dumper for rendering the variables. If you do that, you must properly
102-
render [inline assets](rendering.md#assets) when rendering the debug bar in addition to the normal
102+
render [inline assets](../docs/rendering.md#assets) when rendering the debug bar in addition to the normal
103103
js/css static assets.
104104

105105
$data = array('foo' => 'bar');

docs/bridge_collectors.md renamed to docs/collectors/bridge.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ CacheCache uses [Monolog](https://github.com/Seldaek/monolog) for logging,
1616
thus it is required to collect data.
1717

1818
`CacheCacheCollector` subclasses `MonologCollector`, thus it can be
19-
[aggregated in the messages view](base_collectors.md#messages).
19+
[aggregated in the messages view](base.md#messages).
2020

2121
## Doctrine
2222

@@ -45,7 +45,7 @@ Note that multiple logger can be collected:
4545

4646
$debugbar['monolog']->addLogger($logger);
4747

48-
`MonologCollector` can be [aggregated](base_collectors.md#messages) into the `MessagesCollector`.
48+
`MonologCollector` can be [aggregated](base.md#messages) into the `MessagesCollector`.
4949

5050
## Propel
5151

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

mkdocs.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ copyright: Copyright © Barry vd. Heuvel & Maxime Bouroumeau-Fuseau
88
nav:
99
- DebugBar: index.md
1010
- Documentation:
11-
- quickstart.md
12-
- data_collectors.md
13-
- rendering.md
14-
- ajax_and_stack.md
15-
- data_formatter.md
16-
- storage.md
17-
- openhandler.md
18-
- http_drivers.md
19-
- javascript_bar.md
11+
- Getting started: docs/index.md
12+
- docs/data-collectors.md
13+
- docs/rendering.md
14+
- docs/ajax-and-stack.md
15+
- docs/data-formatter.md
16+
- docs/storage.md
17+
- docs/openhandler.md
18+
- docs/http-drivers.md
19+
- docs/javascript-bar.md
2020
- Collectors:
21-
- base_collectors.md
22-
- bridge_collectors.md
21+
- collectors/base.md
22+
- collectors/bridge.md
2323

2424
theme:
2525
name: material
@@ -35,7 +35,7 @@ theme:
3535
- navigation.tabs.sticky
3636
# - navigation.instant
3737
- navigation.tracking
38-
- navigation.indexes
38+
# - navigation.indexes
3939
- navigation.top
4040
- navigation.footer
4141
- navigation.sections

0 commit comments

Comments
 (0)