Skip to content

Commit

Permalink
fixed markdownlint errors related to title levels
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Dec 31, 2023
1 parent 7f974b3 commit cfefb9f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/components/README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<!-- markdownlint-disable MD013 -->
## Components
# Components

- Parsing PHP 5, PHP 7 or PHP 8 code into an abstract syntax tree (AST) is provided by
the [PHP-Parser](https://github.com/nikic/PHP-Parser) library.

- Contextual elements and minimum PHP versions detection provided by following node visitors.

### PHP-Parser [Node Visitors](./parser/README.md)
## PHP-Parser [Node Visitors](./parser/README.md)

- Parent references with the `ParentContextVisitor`
- Name Resolution with the `NameResolverVisitor`
- Version Resolution with the `VersionResolverVisitor`

### [Profiler](./profiler/README.md)
## [Profiler](./profiler/README.md)

- Data Collector(s) with common `DataCollector` and specialized `VersionDataCollector` classes
- Data Collector(s) contract with the `CollectorInterface`
- Collector Handler for both Profile and Profiler with `CollectorTrait`
- Profile information for a single data source with `Profile`

### [Sniffs](./sniffs/README.md)
## [Sniffs](./sniffs/README.md)

They are grouped by categories to solve PHP features (from 4.0 to 8.3)

Expand All @@ -40,7 +40,7 @@ They are grouped by categories to solve PHP features (from 4.0 to 8.3)
- TextProcessing (2)
- UseDeclarations (2)

### [Extensions](./extensions/README.md)
## [Extensions](./extensions/README.md)

PHPCompatInfo can be extended by registering objects that implement one or more of the following interfaces:

Expand All @@ -59,7 +59,7 @@ PHPCompatInfo can be extended by registering objects that implement one or more

Furthermore, extensions may implement the `Symfony\Component\EventDispatcher\EventSubscriberInterface` in order to have its event handlers automatically registered with the EventDispatcher when the extension is loaded.

### [Polyfills](./polyfills/README.md)
## [Polyfills](./polyfills/README.md)

They are identified by services that implements the `Bartlett\CompatInfo\Application\Polyfills\PolyfillInterface`.

0 comments on commit cfefb9f

Please sign in to comment.