FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ReflectionDocBlock/src/DocBlockFactoryInterface.php at 6.x · phpDocumentor/ReflectionDocBlock · GitHub
phpDocumentor
/
ReflectionDocBlock
Public
Notifications
You must be signed in to change notification settings
Fork
137
Star
9.4k
Code
Issues
10
Pull requests
9
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ReflectionDocBlock
/
src
/
DocBlockFactoryInterface.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (18 loc) · 618 Bytes
Breadcrumbs
ReflectionDocBlock
/
src
/
DocBlockFactoryInterface.php
Copy path
File metadata and controls
23 lines (18 loc) · 618 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
declare
(strict_types=
1
);
namespace
phpDocumentor
\
Reflection
;
use
phpDocumentor
\
Reflection
\
DocBlock
\
Tag
;
// phpcs:ignore SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming.SuperfluousSuffix
interface
DocBlockFactoryInterface
{
/**
* Factory method for easy instantiation.
*
* @param array<string, class-string<Tag>> $additionalTags
*/
public
static
function
createInstance
(
array
$
additionalTags
= []):
self
;
/**
* @param string|object $docblock
*/
public
function
create
(
$
docblock
, ?
Types
\
Context
$
context
=
null
, ?
Location
$
location
=
null
):
DocBlock
;
}
Back
|
FazBrowse Home
|
New Git URL