Skip to content

Commit 2516dbf

Browse files
committed
Improve docs
1 parent c2190bd commit 2516dbf

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.mddoc.xml.dist

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<mddoc>
2-
<docpage target="README.md" autoloader="psr0" autoloader-root="src">
2+
<docpage target="README.md">
33
<section title="Dot Notation Parser">
4-
<badge-poser type="version" />
5-
<badge-poser type="downloads" />
6-
<badge-poser type="license" />
7-
<badge-travis name="QuorumCollection/DotNotationParser" />
4+
<badge-poser type="version"/>
5+
<badge-poser type="downloads"/>
6+
<badge-poser type="license"/>
7+
<badge-github-action name="CorpusPHP/Di" workflow="CI"/>
88
<text><![CDATA[
99
DotNotationParser is a simple parser that will parse `foo.bar.baz` into `[ 'foo', 'bar', 'baz' ]` and `foo."bar.baz"` into `[ 'foo', 'bar.baz' ]`.
1010
@@ -16,7 +16,7 @@ DotNotationParser is a simple parser that will parse `foo.bar.baz` into `[ 'foo'
1616
<composer-install/>
1717
</section>
1818
<section title="Documentation">
19-
<file name="src/DotNotationParser.php" />
19+
<file name="src/DotNotationParser.php"/>
2020
</section>
2121
</section>
2222
</docpage>

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Latest Stable Version](https://poser.pugx.org/quorum/dot-notation/version)](https://packagist.org/packages/quorum/dot-notation)
44
[![Total Downloads](https://poser.pugx.org/quorum/dot-notation/downloads)](https://packagist.org/packages/quorum/dot-notation)
55
[![License](https://poser.pugx.org/quorum/dot-notation/license)](https://packagist.org/packages/quorum/dot-notation)
6-
[![Build Status](https://travis-ci.org/QuorumCollection/DotNotationParser.svg?branch=master)](https://travis-ci.org/QuorumCollection/DotNotationParser)
6+
[![Build Status](https://github.com/CorpusPHP/Di/workflows/CI/badge.svg?)](https://github.com/CorpusPHP/Di/actions?query=workflow%3ACI)
77

88

99
DotNotationParser is a simple parser that will parse `foo.bar.baz` into `[ 'foo', 'bar', 'baz' ]` and `foo."bar.baz"` into `[ 'foo', 'bar.baz' ]`.
@@ -28,15 +28,15 @@ composer require 'quorum/dot-notation'
2828

2929
Class DotPathParser
3030

31+
Parse strings like foo."bar.baz".quux into [ 'foo', 'bar.baz', 'quux' ]
32+
3133
#### Method: DotNotationParser->parse
3234

3335
```php
3436
function parse(string $path) : array
3537
```
3638

37-
##### Parameters:
38-
39-
- ***string*** `$path`
39+
Parse a given dot notation path into it's parts
4040

4141
##### Returns:
4242

src/DotNotationParser.php

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
class DotNotationParser {
1313

1414
/**
15+
* Parse a given dot notation path into it's parts
16+
*
1517
* @return string[]
1618
*/
1719
public function parse( string $path ) : array {

0 commit comments

Comments
 (0)