Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 8efa0ca

Browse files
authored
Document inherited methods (#46)
* Document inherited methods Breaking change: the index needs to retain and expose the full data, not just the strings. refs hhvm/user-documentation#1125 * update generated documentation * more new docs! * tabs/spaces
1 parent f9984f2 commit 8efa0ca

File tree

29 files changed

+417
-158
lines changed

29 files changed

+417
-158
lines changed

docs/class.Facebook.HHAPIDoc.GeneratorCLI.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,6 @@ <h3>Protected Methods</h3>
5858
<ul>
5959
<li><a href="class.Facebook.HHAPIDoc.GeneratorCLI.getSupportedOptions.html"><code>-&gt;getSupportedOptions(): vec&lt;\Facebook\CLILib\CLIOptions\CLIOption&gt;</code></a></li>
6060
</ul>
61-
<h3>Private Methods</h3>
62-
<ul>
63-
<li><a href="class.Facebook.HHAPIDoc.GeneratorCLI.parse.html"><code>-&gt;parse(): vec&lt;Documentable&gt;</code></a></li>
64-
<li><a href="class.Facebook.HHAPIDoc.GeneratorCLI.verboseWrite.html"><code>-&gt;verboseWrite(string $what): void</code></a><br />
65-
Write output only if verbose mode is set</li>
66-
</ul>
6761

6862
</body>
6963
</html>

docs/class.Facebook.HHAPIDoc.IndexDocumentBuilder.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ <h3>Protected Methods</h3>
6060
<ul>
6161
<li><a href="class.Facebook.HHAPIDoc.IndexDocumentBuilder.getContext.html"><code>-&gt;getContext(): DocumentationBuilderContext</code></a></li>
6262
<li><a href="class.Facebook.HHAPIDoc.IndexDocumentBuilder.getIndexDocumentMarkdown.html"><code>-&gt;getIndexDocumentMarkdown(): string</code></a></li>
63-
<li><a href="class.Facebook.HHAPIDoc.IndexDocumentBuilder.renderPart.html"><code>-&gt;renderPart(string $title, keyset&lt;string&gt; $names, (function(string): ?string) $get_path): ?string</code></a><br />
63+
<li><a href="class.Facebook.HHAPIDoc.IndexDocumentBuilder.renderPart.html"><code>-&gt;renderPart(string $title, dict&lt;string, Documentable&gt; $entries, (function(string): ?string) $get_path): ?string</code></a><br />
6464
Render an index section to Markdown</li>
6565
<li><a href="class.Facebook.HHAPIDoc.IndexDocumentBuilder.renderToHTML.html"><code>-&gt;renderToHTML(string $markdown): string</code></a></li>
6666
</ul>

docs/class.Facebook.HHAPIDoc.IndexDocumentBuilder.renderPart.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ <h1>Facebook\HHAPIDoc\IndexDocumentBuilder::renderPart()</h1>
4646
<p>Render an index section to Markdown</p>
4747
<pre><code class="language-Hack">protected function renderPart(
4848
string $title,
49-
keyset&lt;string&gt; $names,
49+
dict&lt;string, Facebook\HHAPIDoc\Documentable&gt; $entries,
5050
(function(string): ?string) $get_path,
5151
): ?string;
5252
</code></pre>
5353
<h2>Parameters</h2>
5454
<ul>
5555
<li><code>string $title</code> the title of the section - e.g. 'Classes'</li>
56-
<li><code>keyset&lt;string&gt; $names</code> the names of all the definitions that belong in this section</li>
56+
<li><code>dict&lt;string, Facebook\HHAPIDoc\Documentable&gt; $entries</code></li>
5757
<li><code>(function(string): ?string) $get_path</code> a callable that takes a name from <code>$names</code> and returns
5858
<code>null</code> if a path can't be found, otherwise returns a path suitable for
5959
linking to for the specified name.</li>
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
<html>
2+
<head>
3+
<title>Facebook\HHAPIDoc\IndexedPathProvider::isMethodDefined</title>
4+
<style>
5+
/*
6+
* Copyright (c) 2018-present, Facebook, Inc.
7+
* All rights reserved.
8+
*
9+
* This source code is licensed under the MIT license found in the
10+
* LICENSE file in the root directory of this source tree.
11+
*
12+
*/
13+
14+
/* Keywords */
15+
16+
.hs-FunctionToken,
17+
.hs-NamespaceToken {
18+
color: #c678dd;
19+
}
20+
21+
/* Types */
22+
23+
.hs-SimpleTypeSpecifier .hs-StringToken {
24+
color: #e5c07b;
25+
}
26+
27+
.hs-ClassDeclaration .hs-NameToken {
28+
color: #e5c07b;
29+
}
30+
31+
/* Functions */
32+
33+
.hs-FunctionDeclaration .hs-NameToken {
34+
color: #61afef;
35+
}
36+
37+
/* Variables */
38+
39+
.hs-VariableToken {
40+
color: #e06c75;
41+
}
42+
</style>
43+
</head>
44+
<body>
45+
<h1>Facebook\HHAPIDoc\IndexedPathProvider::isMethodDefined()</h1>
46+
<pre><code class="language-Hack">private function isMethodDefined(
47+
dict&lt;string, Facebook\HHAPIDoc\Documentable&gt; $index,
48+
string $classish,
49+
string $method,
50+
): bool;
51+
</code></pre>
52+
<h2>Parameters</h2>
53+
<ul>
54+
<li><code>dict&lt;string, Facebook\HHAPIDoc\Documentable&gt; $index</code></li>
55+
<li><code>string $classish</code></li>
56+
<li><code>string $method</code></li>
57+
</ul>
58+
<h2>Returns</h2>
59+
<ul>
60+
<li><code>bool</code></li>
61+
</ul>
62+
63+
</body>
64+
</html>

docs/class.Facebook.HHAPIDoc.MarkdownExt.AutoLinkifyFilter.html

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@ <h3>Public Methods</h3>
5454
<li><a href="class.Facebook.HHAPIDoc.MarkdownExt.AutoLinkifyFilter.filter.html"><code>-&gt;filter(\Facebook\Markdown\RenderContext $context, \Facebook\Markdown\ASTNode $node): vec&lt;\Facebook\Markdown\ASTNode&gt;</code></a></li>
5555
<li><a href="class.Facebook.HHAPIDoc.MarkdownExt.AutoLinkifyFilter.resetFileData.html"><code>-&gt;resetFileData(): this</code></a></li>
5656
</ul>
57-
<h3>Private Methods</h3>
58-
<ul>
59-
<li><a href="class.Facebook.HHAPIDoc.MarkdownExt.AutoLinkifyFilter.getPath.html"><code>::getPath(RenderContext $context, string $search): ?string</code></a></li>
60-
<li><a href="class.Facebook.HHAPIDoc.MarkdownExt.AutoLinkifyFilter.getPathForMethod.html"><code>::getPathForMethod(RenderContext $context, string $class_search, string $method_search): ?string</code></a></li>
61-
</ul>
6257

6358
</body>
6459
</html>

docs/class.Facebook.HHAPIDoc.PageSections.DeprecationMessage.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ <h3>Public Methods</h3>
5454
<ul>
5555
<li><a href="class.Facebook.HHAPIDoc.PageSections.DeprecationMessage.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5656
</ul>
57+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
58+
<ul>
59+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
60+
</ul>
5761
<h3>Protected Methods</h3>
5862
<ul>
5963
<li><a href="class.Facebook.HHAPIDoc.PageSections.DeprecationMessage.getDeprecationMessage.html"><code>-&gt;getDeprecationMessage(): ?string</code></a></li>

docs/class.Facebook.HHAPIDoc.PageSections.Description.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.Description.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5555
</ul>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
57+
<ul>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
59+
</ul>
5660

5761
</body>
5862
</html>

docs/class.Facebook.HHAPIDoc.PageSections.FrontMatter.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.FrontMatter.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5555
</ul>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
57+
<ul>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
59+
</ul>
5660

5761
</body>
5862
</html>

docs/class.Facebook.HHAPIDoc.PageSections.FunctionishParameters.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.FunctionishParameters.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5555
</ul>
56-
<h3>Private Methods</h3>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
5757
<ul>
58-
<li><a href="class.Facebook.HHAPIDoc.PageSections.FunctionishParameters.getParameterListItem.html"><code>::getParameterListItem(string $ns, \Facebook\DefinitionFinder\ScannedParameter $p, ?\Facebook\HHAPIDoc\DocBlock\ParameterInfo $docs): string</code></a></li>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
5959
</ul>
6060

6161
</body>

docs/class.Facebook.HHAPIDoc.PageSections.FunctionishReturnValues.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.FunctionishReturnValues.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5555
</ul>
56-
<h3>Private Methods</h3>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
5757
<ul>
58-
<li><a href="class.Facebook.HHAPIDoc.PageSections.FunctionishReturnValues.getReturnValueInformation.html"><code>::getReturnValueInformation(\Facebook\DefinitionFinder\ScannedFunctionish $f, \Facebook\HHAPIDoc\DocBlock\ReturnInfo $docs): string</code></a></li>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
5959
</ul>
6060

6161
</body>

docs/class.Facebook.HHAPIDoc.PageSections.FunctionishSignature.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.FunctionishSignature.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5555
</ul>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
57+
<ul>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
59+
</ul>
5660

5761
</body>
5862
</html>
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<html>
2+
<head>
3+
<title>Facebook\HHAPIDoc\PageSections\InterfaceSynopsis::getLinkPathForClassish</title>
4+
<style>
5+
/*
6+
* Copyright (c) 2018-present, Facebook, Inc.
7+
* All rights reserved.
8+
*
9+
* This source code is licensed under the MIT license found in the
10+
* LICENSE file in the root directory of this source tree.
11+
*
12+
*/
13+
14+
/* Keywords */
15+
16+
.hs-FunctionToken,
17+
.hs-NamespaceToken {
18+
color: #c678dd;
19+
}
20+
21+
/* Types */
22+
23+
.hs-SimpleTypeSpecifier .hs-StringToken {
24+
color: #e5c07b;
25+
}
26+
27+
.hs-ClassDeclaration .hs-NameToken {
28+
color: #e5c07b;
29+
}
30+
31+
/* Functions */
32+
33+
.hs-FunctionDeclaration .hs-NameToken {
34+
color: #61afef;
35+
}
36+
37+
/* Variables */
38+
39+
.hs-VariableToken {
40+
color: #e06c75;
41+
}
42+
</style>
43+
</head>
44+
<body>
45+
<h1>Facebook\HHAPIDoc\PageSections\InterfaceSynopsis::getLinkPathForClassish()</h1>
46+
<pre><code class="language-Hack">private function getLinkPathForClassish(
47+
Facebook\DefinitionFinder\ScannedClassish $c,
48+
): ?string;
49+
</code></pre>
50+
<h2>Parameters</h2>
51+
<ul>
52+
<li><code>Facebook\DefinitionFinder\ScannedClassish $c</code></li>
53+
</ul>
54+
<h2>Returns</h2>
55+
<ul>
56+
<li><code>?string</code></li>
57+
</ul>
58+
59+
</body>
60+
</html>

docs/class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.getMethodList.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,13 @@
4545
<h1>Facebook\HHAPIDoc\PageSections\InterfaceSynopsis::getMethodList()</h1>
4646
<pre><code class="language-Hack">private function getMethodList(
4747
string $header,
48-
Facebook\DefinitionFinder\ScannedClassish $c,
49-
vec&lt;Facebook\DefinitionFinder\ScannedMethod&gt; $methods,
48+
vec&lt;(Facebook\DefinitionFinder\ScannedClassish, Facebook\DefinitionFinder\ScannedMethod)&gt; $methods,
5049
): ?string;
5150
</code></pre>
5251
<h2>Parameters</h2>
5352
<ul>
5453
<li><code>string $header</code></li>
55-
<li><code>Facebook\DefinitionFinder\ScannedClassish $c</code></li>
56-
<li><code>vec&lt;Facebook\DefinitionFinder\ScannedMethod&gt; $methods</code></li>
54+
<li><code>vec&lt;(Facebook\DefinitionFinder\ScannedClassish, Facebook\DefinitionFinder\ScannedMethod)&gt; $methods</code></li>
5755
</ul>
5856
<h2>Returns</h2>
5957
<ul>

docs/class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.getMethodListItem.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
<body>
4545
<h1>Facebook\HHAPIDoc\PageSections\InterfaceSynopsis::getMethodListItem()</h1>
4646
<pre><code class="language-Hack">private function getMethodListItem(
47-
Facebook\DefinitionFinder\ScannedClassish $c,
47+
Facebook\DefinitionFinder\ScannedClassish $defining_class,
4848
Facebook\DefinitionFinder\ScannedMethod $m,
4949
): string;
5050
</code></pre>
5151
<h2>Parameters</h2>
5252
<ul>
53-
<li><code>Facebook\DefinitionFinder\ScannedClassish $c</code></li>
53+
<li><code>Facebook\DefinitionFinder\ScannedClassish $defining_class</code></li>
5454
<li><code>Facebook\DefinitionFinder\ScannedMethod $m</code></li>
5555
</ul>
5656
<h2>Returns</h2>

docs/class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,9 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5555
</ul>
56-
<h3>Private Methods</h3>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
5757
<ul>
58-
<li><a href="class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.getInheritanceInformation.html"><code>-&gt;getInheritanceInformation(\Facebook\DefinitionFinder\ScannedClassish $c): string</code></a></li>
59-
<li><a href="class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.getLinkPathForMethod.html"><code>-&gt;getLinkPathForMethod(\Facebook\DefinitionFinder\ScannedClassish $c, \Facebook\DefinitionFinder\ScannedMethod $m): ?string</code></a></li>
60-
<li><a href="class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.getMethodList.html"><code>-&gt;getMethodList(string $header, \Facebook\DefinitionFinder\ScannedClassish $c, vec&lt;\Facebook\DefinitionFinder\ScannedMethod&gt; $methods): ?string</code></a></li>
61-
<li><a href="class.Facebook.HHAPIDoc.PageSections.InterfaceSynopsis.getMethodListItem.html"><code>-&gt;getMethodListItem(\Facebook\DefinitionFinder\ScannedClassish $c, \Facebook\DefinitionFinder\ScannedMethod $m): string</code></a></li>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
6259
</ul>
6360

6461
</body>
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<html>
2+
<head>
3+
<title>Facebook\HHAPIDoc\PageSections\InterfaceSynopsis::walkMethods</title>
4+
<style>
5+
/*
6+
* Copyright (c) 2018-present, Facebook, Inc.
7+
* All rights reserved.
8+
*
9+
* This source code is licensed under the MIT license found in the
10+
* LICENSE file in the root directory of this source tree.
11+
*
12+
*/
13+
14+
/* Keywords */
15+
16+
.hs-FunctionToken,
17+
.hs-NamespaceToken {
18+
color: #c678dd;
19+
}
20+
21+
/* Types */
22+
23+
.hs-SimpleTypeSpecifier .hs-StringToken {
24+
color: #e5c07b;
25+
}
26+
27+
.hs-ClassDeclaration .hs-NameToken {
28+
color: #e5c07b;
29+
}
30+
31+
/* Functions */
32+
33+
.hs-FunctionDeclaration .hs-NameToken {
34+
color: #61afef;
35+
}
36+
37+
/* Variables */
38+
39+
.hs-VariableToken {
40+
color: #e06c75;
41+
}
42+
</style>
43+
</head>
44+
<body>
45+
<h1>Facebook\HHAPIDoc\PageSections\InterfaceSynopsis::walkMethods()</h1>
46+
<pre><code class="language-Hack">private function walkMethods(
47+
Facebook\DefinitionFinder\ScannedClassish $c,
48+
): dict&lt;string, (Facebook\DefinitionFinder\ScannedClassish, Facebook\DefinitionFinder\ScannedMethod)&gt;;
49+
</code></pre>
50+
<h2>Parameters</h2>
51+
<ul>
52+
<li><code>Facebook\DefinitionFinder\ScannedClassish $c</code></li>
53+
</ul>
54+
<h2>Returns</h2>
55+
<ul>
56+
<li><code>dict&lt;string, (Facebook\DefinitionFinder\ScannedClassish, Facebook\DefinitionFinder\ScannedMethod)&gt;</code></li>
57+
</ul>
58+
59+
</body>
60+
</html>

docs/class.Facebook.HHAPIDoc.PageSections.NameHeading.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.NameHeading.getMarkdown.html"><code>-&gt;getMarkdown(): string</code></a></li>
5555
</ul>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
57+
<ul>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
59+
</ul>
5660

5761
</body>
5862
</html>

docs/class.Facebook.HHAPIDoc.PageSections.ShapeFields.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ <h3>Public Methods</h3>
5353
<ul>
5454
<li><a href="class.Facebook.HHAPIDoc.PageSections.ShapeFields.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5555
</ul>
56+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
57+
<ul>
58+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
59+
</ul>
5660

5761
</body>
5862
</html>

docs/class.Facebook.HHAPIDoc.PageSections.Summary.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ <h3>Public Methods</h3>
5555
<ul>
5656
<li><a href="class.Facebook.HHAPIDoc.PageSections.Summary.getMarkdown.html"><code>-&gt;getMarkdown(): ?string</code></a></li>
5757
</ul>
58+
<h3>Public Methods (<a href="class.Facebook.HHAPIDoc.PageSections.PageSection.html"><code>Facebook\HHAPIDoc\PageSections\PageSection</code></a>)</h3>
59+
<ul>
60+
<li><a href="class.Facebook.HHAPIDoc.PageSections.PageSection.__construct.html"><code>-&gt;__construct(\Facebook\HHAPIDoc\DocumentationBuilderContext $context, \Facebook\HHAPIDoc\Documentable $documentable, ?\Facebook\HHAPIDoc\DocBlock\DocBlock $docBlock)</code></a></li>
61+
</ul>
5862

5963
</body>
6064
</html>

0 commit comments

Comments
 (0)