Skip to content
This repository was archived by the owner on Jun 2, 2022. It is now read-only.

Commit d6bede8

Browse files
committed
Fix argument types separator in table for methods
1 parent ae173d6 commit d6bede8

File tree

14 files changed

+44
-22
lines changed

14 files changed

+44
-22
lines changed

CHANGELOG.md

100644100755
Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ All notable changes to `simple-php-apidoc` will be documented in this file.
44

55
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
66

7-
## NEXT - YYYY-MM-DD
8-
7+
<!--
8+
## [X.Y.Z] - YYYY-MM-DD
99
### Added
1010
- Nothing
1111
@@ -20,3 +20,16 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
2020
2121
### Security
2222
- Nothing
23+
-->
24+
25+
## [1.0.1] - 2019-10-14
26+
### Fixed
27+
- Fix argument types separator in table for methods
28+
29+
## [1.0.0] - 2019-10-13
30+
### Added
31+
- Reflection elements decorators
32+
- Collections for some decorated elements
33+
- DocBlock resolvers for inherit doc blocks from parent classes, methods and properties
34+
- Renderer interface and simple markdown renderer
35+
- CLI tool

docs/spaceonfire/SimplePhpApiDoc/Context.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Decorate phpDocumentor elements with custom element classes
4040

4141
|Param|Type|Description|
4242
|---|---|---|
43-
|`$element`|*\phpDocumentor\Reflection\Element|mixed*|Element to decorate|
44-
|**Return**|*\spaceonfire\SimplePhpApiDoc\Elements\ElementInterface|mixed*|Decorated element or source element if there no mappings for this type|
43+
|`$element`|*\phpDocumentor\Reflection\Element&#124;mixed*|Element to decorate|
44+
|**Return**|*\spaceonfire\SimplePhpApiDoc\Elements\ElementInterface&#124;mixed*|Decorated element or source element if there no mappings for this type|
4545

4646
```php
4747
public function Context::elementFactory(mixed $element): mixed
@@ -84,7 +84,7 @@ Get element object by name
8484
|Param|Type|Description|
8585
|---|---|---|
8686
|`$fqsen`|*string*|Fully Qualified Structural Element Name|
87-
|**Return**|*mixed|null*||
87+
|**Return**|*mixed&#124;null*||
8888

8989
```php
9090
public function Context::getElement(string $fqsen): mixed
@@ -99,7 +99,7 @@ Get file by element name
9999
|Param|Type|Description|
100100
|---|---|---|
101101
|`$fqsen`|*string*|Fully Qualified Structural Element Name|
102-
|**Return**|*\phpDocumentor\Reflection\Php\File|null*||
102+
|**Return**|*\phpDocumentor\Reflection\Php\File&#124;null*||
103103

104104
```php
105105
public function Context::getFile(string $fqsen): ?\spaceonfire\SimplePhpApiDoc\phpDocumentor\Reflection\Php\File
@@ -155,7 +155,7 @@ Getter for `project` property
155155

156156
|Param|Type|Description|
157157
|---|---|---|
158-
|**Return**|*\phpDocumentor\Reflection\Php\Project|\phpDocumentor\Reflection\Project*||
158+
|**Return**|*\phpDocumentor\Reflection\Php\Project&#124;\phpDocumentor\Reflection\Project*||
159159

160160
```php
161161
public function Context::getProject(): \spaceonfire\SimplePhpApiDoc\phpDocumentor\Reflection\Project

docs/spaceonfire/SimplePhpApiDoc/Elements/ClassElement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Returns the superclass this class is extending if available.
156156

157157
|Param|Type|Description|
158158
|---|---|---|
159-
|**Return**|*\phpDocumentor\Reflection\Fqsen|null*||
159+
|**Return**|*\phpDocumentor\Reflection\Fqsen&#124;null*||
160160

161161
```php
162162
public function ClassElement::getParentFqsen(): ?\spaceonfire\SimplePhpApiDoc\Elements\phpDocumentor\Reflection\Fqsen

docs/spaceonfire/SimplePhpApiDoc/Elements/Collections/MethodsCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ TODO: move to BaseCollection
4949
|Param|Type|Description|
5050
|---|---|---|
5151
|`$callback`|*callable*||
52-
|**Return**|*mixed|null*||
52+
|**Return**|*mixed&#124;null*||
5353

5454
```php
5555
public function TypedCollection::find(callable $callback): mixed

docs/spaceonfire/SimplePhpApiDoc/Elements/Collections/NamespacesCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ TODO: move to BaseCollection
3232
|Param|Type|Description|
3333
|---|---|---|
3434
|`$callback`|*callable*||
35-
|**Return**|*mixed|null*||
35+
|**Return**|*mixed&#124;null*||
3636

3737
```php
3838
public function TypedCollection::find(callable $callback): mixed

docs/spaceonfire/SimplePhpApiDoc/Elements/Collections/PropertiesCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ TODO: move to BaseCollection
4949
|Param|Type|Description|
5050
|---|---|---|
5151
|`$callback`|*callable*||
52-
|**Return**|*mixed|null*||
52+
|**Return**|*mixed&#124;null*||
5353

5454
```php
5555
public function TypedCollection::find(callable $callback): mixed

docs/spaceonfire/SimplePhpApiDoc/Elements/Collections/TraitsCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ TODO: move to BaseCollection
3232
|Param|Type|Description|
3333
|---|---|---|
3434
|`$callback`|*callable*||
35-
|**Return**|*mixed|null*||
35+
|**Return**|*mixed&#124;null*||
3636

3737
```php
3838
public function TypedCollection::find(callable $callback): mixed

docs/spaceonfire/SimplePhpApiDoc/Elements/Collections/TypedCollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ TODO: move to BaseCollection
3434
|Param|Type|Description|
3535
|---|---|---|
3636
|`$callback`|*callable*||
37-
|**Return**|*mixed|null*||
37+
|**Return**|*mixed&#124;null*||
3838

3939
```php
4040
public function TypedCollection::find(callable $callback): mixed

docs/spaceonfire/SimplePhpApiDoc/Elements/ElementVisibilityInterface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Returns the Visibility of this method.
1010

1111
|Param|Type|Description|
1212
|---|---|---|
13-
|**Return**|*\phpDocumentor\Reflection\Php\Visibility|null*||
13+
|**Return**|*\phpDocumentor\Reflection\Php\Visibility&#124;null*||
1414

1515
```php
1616
public function ElementVisibilityInterface::getVisibility(): ?\spaceonfire\SimplePhpApiDoc\Elements\phpDocumentor\Reflection\Php\Visibility

docs/spaceonfire/SimplePhpApiDoc/Elements/MethodElement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Returns the Visibility of this method.
184184

185185
|Param|Type|Description|
186186
|---|---|---|
187-
|**Return**|*\phpDocumentor\Reflection\Php\Visibility|null*||
187+
|**Return**|*\phpDocumentor\Reflection\Php\Visibility&#124;null*||
188188

189189
```php
190190
public function MethodElement::getVisibility(): ?\spaceonfire\SimplePhpApiDoc\Elements\phpDocumentor\Reflection\Php\Visibility

0 commit comments

Comments
 (0)