Skip to content

Commit bc647b4

Browse files
committed
Rename "symbol" term to "element"
1 parent f328852 commit bc647b4

19 files changed

+52
-52
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ composer require type-lang/phpdoc
3232

3333
## Supported Tags
3434

35-
- [x] `@abstract` - Declare any _Symbol_ as abstract
36-
- [x] `@api` - Highlight _Symbol_ as being part of the public API
35+
- [x] `@abstract` - Declare any _Element_ as abstract
36+
- [x] `@api` - Highlight _Element_ as being part of the public API
3737
- [ ] `@author` - TODO
3838
- [ ] `@category` - TODO
39-
- [x] `@copyright` - Used to document the copyright information of any _Symbol_.
39+
- [x] `@copyright` - Used to document the copyright information of any _Element_.
4040
- [ ] `@deprecated` - TODO
4141
- [ ] `@example` - TODO
4242
- [x] `@extends` - Allows to extend templated classes and interfaces
4343
- [ ] `@filesource` - TODO
44-
- [x] `@final` - Declare any _Symbol_ as final
44+
- [x] `@final` - Declare any _Element_ as final
4545
- [ ] `@global` - TODO
46-
- [x] `@ignore` - Used to tell documentation systems that _Symbol_ are
46+
- [x] `@ignore` - Used to tell documentation systems that _Element_ are
4747
not to be processed.
4848
- [x] `@implements` - Allows to extend templated interfaces
4949
- [ ] `@inheritdoc` - TODO
5050
- [x] `@inherits` - An alias of `@extends` tag
5151
- [ ] `@internal` - TODO
5252
- [x] `@license` - Used to indicate which license is applicable
53-
- [x] `@link` - Indicates a custom relation between the associated _Symbol_
53+
- [x] `@link` - Indicates a custom relation between the associated _Element_
5454
and a website, which is identified by an absolute URI
5555
- [x] `@method` - Allows a class to know which "_magic_" methods are callable
5656
- [ ] `@mixin` - TODO
@@ -90,14 +90,14 @@ composer require type-lang/phpdoc
9090
- [x] `@template-implements` - An alias of `@implements` tag
9191
- [x] `@template-use` - Allows to extend templated traits
9292
- [x] `@throw` - An alias of `@throws` tag
93-
- [x] `@throws` - Used to indicate whether _Symbol_ throw a specific type
93+
- [x] `@throws` - Used to indicate whether _Element_ throw a specific type
9494
of `\Throwable` (exception or error)
9595
- [ ] `@todo` - TODO
9696
- [ ] `@unused-param` - TODO
9797
- [x] `@use` - An alias of `@template-use` tag
9898
- [ ] `@used-by` - TODO
9999
- [ ] `@uses` - TODO
100-
- [x] `@var` - Document the _Type_ of the following _Symbol_
100+
- [x] `@var` - Document the _Type_ of the following _Element_
101101
- [ ] `@version` - TODO
102102

103103
### Psalm Tags

src/DocBlock/Tag/ApiTag/ApiTag.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@
77
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
88

99
/**
10-
* Used to highlight _Symbol_ as being part of the primary
10+
* Used to highlight _Element_ as being part of the primary
1111
* public API of a package.
1212
*
13-
* The "`@api`" tag may be applied to public _Symbol_ to highlight them
13+
* The "`@api`" tag may be applied to public _Element_ to highlight them
1414
* in generated documentation, pointing the consumer to the primary public
1515
* API components of a library or framework.
1616
*
17-
* When the "`@api`" tag is used, other _Symbol_ with a public
17+
* When the "`@api`" tag is used, other _Element_ with a public
1818
* visibility serve to support the internal structure and
1919
* are not recommended to be used by the consumer.
2020
*
21-
* The exact meaning of _Symbol_ tagged with "`@api`" MAY differ per project.
22-
* It is however RECOMMENDED that all "`@api`" tagged _Symbol_ SHOULD
21+
* The exact meaning of _Element_ tagged with "`@api`" MAY differ per project.
22+
* It is however RECOMMENDED that all "`@api`" tagged _Element_ SHOULD
2323
* NOT change after publication unless the new version
2424
* is tagged as breaking Backwards Compatibility.
2525
*
2626
* See also the `"@internal"` tag, which can be used to hide internal
27-
* _Symbol_ from generated documentation.
27+
* _Element_ from generated documentation.
2828
*
2929
* ```
3030
* "@api" [<description>]

src/DocBlock/Tag/CopyrightTag/CopyrightTag.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
88

99
/**
10-
* Used to document the copyright information of any _Symbol_.
10+
* Used to document the copyright information of any _Element_.
1111
*
12-
* The "`@copyright`" tag defines who holds the copyright over the _Symbol_.
13-
* The copyright indicated with this tag applies to the _Symbol_ with which
12+
* The "`@copyright`" tag defines who holds the copyright over the _Element_.
13+
* The copyright indicated with this tag applies to the _Element_ with which
1414
* it is associated and all child elements unless otherwise noted.
1515
*
1616
* The format of the description is governed by the coding standard of each

src/DocBlock/Tag/FinalTag/FinalTag.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
88

99
/**
10-
* Used to denote that the associated _Symbol_ is final, are not allowed to
11-
* extend or override the _Symbol_ in a child element.
10+
* Used to denote that the associated _Element_ is final, are not allowed to
11+
* extend or override the _Element_ in a child element.
1212
*
1313
* In some situations the language construct final cannot be used by the
1414
* implementing library where the functionality of the library prevents

src/DocBlock/Tag/IgnoreTag/IgnoreTag.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
88

99
/**
10-
* Used to tell documentation systems that _Symbol_ are not to be processed.
10+
* Used to tell documentation systems that _Element_ are not to be processed.
1111
*
1212
* ```
1313
* "@ignore" [<description>]

src/DocBlock/Tag/LicenseTag/LicenseTag.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
99

1010
/**
11-
* Used to indicate which license is applicable for the associated _Symbol_.
11+
* Used to indicate which license is applicable for the associated _Element_.
1212
*
1313
* The `"@license"` tag provides the user with the name and URL of the license
14-
* that is applicable to a _Symbol_ and any of its child elements.
14+
* that is applicable to a _Element_ and any of its child elements.
1515
*
1616
* Whenever multiple licenses apply, there MUST be one "`@license"` tag per
1717
* applicable license.

src/DocBlock/Tag/LinkTag/LinkTag.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
/**
1111
* The "`@link`" tag can be used to define a relation, or link, between
12-
* the symbol, or part of the long description when used inline, to a URI.
12+
* the element, or part of the long description when used inline, to a URI.
1313
*
1414
* The URI MUST be complete and well-formed as specified in RFC2396.
1515
*

src/DocBlock/Tag/SeeTag/SeeTag.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
namespace TypeLang\PHPDoc\DocBlock\Tag\SeeTag;
66

77
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ReferenceInterface;
8-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\SymbolReference;
8+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ElementReference;
99
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\UriReference;
1010
use TypeLang\PHPDoc\DocBlock\Tag\Tag;
1111

1212
/**
13-
* The "`@see`" tag can be used to define a {@see SymbolReference symbol} or
13+
* The "`@see`" tag can be used to define a {@see ElementReference element} or
1414
* to an {@see UriReference external URI}.
1515
*
16-
* When defining a reference to other symbols, you can refer to a specific
16+
* When defining a reference to other elements, you can refer to a specific
1717
* element by appending a double colon and providing the name of that element
1818
* (also called the 'Fully Qualified Name' or _FQN_).
1919
*

src/DocBlock/Tag/SeeTag/SeeTagFactory.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use TypeLang\Parser\ParserInterface as TypesParserInterface;
99
use TypeLang\PHPDoc\DocBlock\Tag\Factory\TagFactoryInterface;
1010
use TypeLang\PHPDoc\Parser\Content\Stream;
11-
use TypeLang\PHPDoc\Parser\Content\SymbolReferenceReader;
11+
use TypeLang\PHPDoc\Parser\Content\ElementReferenceReader;
1212
use TypeLang\PHPDoc\Parser\Content\UriReferenceReader;
1313
use TypeLang\PHPDoc\Parser\Description\DescriptionParserInterface;
1414

@@ -30,7 +30,7 @@ public function create(string $tag, string $content, DescriptionParserInterface
3030
try {
3131
$reference = $stream->apply(new UriReferenceReader());
3232
} catch (\Throwable) {
33-
$reference = $stream->apply(new SymbolReferenceReader($this->parser));
33+
$reference = $stream->apply(new ElementReferenceReader($this->parser));
3434
}
3535

3636
return new SeeTag(

src/DocBlock/Tag/Shared/Reference/ClassConstantSymbolReference.php src/DocBlock/Tag/Shared/Reference/ClassConstantElementReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Related to any internal class property reference
1111
*/
12-
final class ClassConstantSymbolReference extends ClassSymbolReference
12+
final class ClassConstantElementReference extends ClassElementReference
1313
{
1414
public function __construct(
1515
Name $class,

src/DocBlock/Tag/Shared/Reference/ClassSymbolReference.php src/DocBlock/Tag/Shared/Reference/ClassElementReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Related to any internal class reference
1111
*/
12-
abstract class ClassSymbolReference extends SymbolReference
12+
abstract class ClassElementReference extends ElementReference
1313
{
1414
public function __construct(
1515
public readonly Name $class,

src/DocBlock/Tag/Shared/Reference/ClassMethodSymbolReference.php src/DocBlock/Tag/Shared/Reference/ClassMethodElementReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Related to any internal class property reference
1111
*/
12-
final class ClassMethodSymbolReference extends ClassSymbolReference
12+
final class ClassMethodElementReference extends ClassElementReference
1313
{
1414
public function __construct(
1515
Name $class,

src/DocBlock/Tag/Shared/Reference/ClassPropertySymbolReference.php src/DocBlock/Tag/Shared/Reference/ClassPropertyElementReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Related to any internal class property reference
1111
*/
12-
final class ClassPropertySymbolReference extends ClassSymbolReference
12+
final class ClassPropertyElementReference extends ClassElementReference
1313
{
1414
public function __construct(
1515
Name $class,

src/DocBlock/Tag/Shared/Reference/SymbolReference.php src/DocBlock/Tag/Shared/Reference/ElementReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
/**
88
* Related to any internal reference
99
*/
10-
abstract class SymbolReference implements ReferenceInterface {}
10+
abstract class ElementReference implements ReferenceInterface {}

src/DocBlock/Tag/Shared/Reference/FunctionReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Related to internal function reference
1111
*/
12-
final class FunctionReference extends SymbolReference
12+
final class FunctionReference extends ElementReference
1313
{
1414
public function __construct(
1515
public readonly Name $function,

src/DocBlock/Tag/Shared/Reference/ReferenceInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
namespace TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference;
66

77
/**
8-
* Represents reference to the external or internal symbol
8+
* Represents reference to the external or internal element
99
*/
1010
interface ReferenceInterface {}

src/DocBlock/Tag/Shared/Reference/TypeSymbolReference.php src/DocBlock/Tag/Shared/Reference/TypeElementReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Related to internal type reference
1111
*/
12-
final class TypeSymbolReference extends SymbolReference
12+
final class TypeElementReference extends ElementReference
1313
{
1414
public function __construct(
1515
public readonly TypeStatement $type,

src/DocBlock/Tag/Shared/Reference/VariableReference.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Related to local variable reference
1111
*/
12-
final class VariableReference extends SymbolReference
12+
final class VariableReference extends ElementReference
1313
{
1414
public function __construct(
1515
public readonly VariableLiteralNode $variable,

src/Parser/Content/SymbolReferenceReader.php src/Parser/Content/ElementReferenceReader.php

+15-15
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
use TypeLang\Parser\Node\Stmt\ClassConstNode;
1010
use TypeLang\Parser\Node\Stmt\NamedTypeNode;
1111
use TypeLang\Parser\ParserInterface as TypesParserInterface;
12-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassConstantSymbolReference;
13-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassMethodSymbolReference;
14-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassPropertySymbolReference;
12+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassConstantElementReference;
13+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassMethodElementReference;
14+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ClassPropertyElementReference;
1515
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\FunctionReference;
16-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\SymbolReference;
17-
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\TypeSymbolReference;
16+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\ElementReference;
17+
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\TypeElementReference;
1818
use TypeLang\PHPDoc\DocBlock\Tag\Shared\Reference\VariableReference;
1919

2020
/**
21-
* @template-implements ReaderInterface<SymbolReference>
21+
* @template-implements ReaderInterface<ElementReference>
2222
*/
23-
final class SymbolReferenceReader implements ReaderInterface
23+
final class ElementReferenceReader implements ReaderInterface
2424
{
2525
private OptionalTypeReader $types;
2626

@@ -29,7 +29,7 @@ public function __construct(TypesParserInterface $parser)
2929
$this->types = new OptionalTypeReader($parser);
3030
}
3131

32-
public function __invoke(Stream $stream): SymbolReference
32+
public function __invoke(Stream $stream): ElementReference
3333
{
3434
$type = ($this->types)($stream);
3535

@@ -56,10 +56,10 @@ public function __invoke(Stream $stream): SymbolReference
5656
$identifier = $type->constant->toString();
5757

5858
if (\str_starts_with($stream->value, '()')) {
59-
return new ClassMethodSymbolReference($type->class, $identifier);
59+
return new ClassMethodElementReference($type->class, $identifier);
6060
}
6161

62-
return new ClassConstantSymbolReference($type->class, $identifier);
62+
return new ClassConstantElementReference($type->class, $identifier);
6363
}
6464

6565
throw $stream->toException(\sprintf(
@@ -68,16 +68,16 @@ public function __invoke(Stream $stream): SymbolReference
6868
));
6969
}
7070

71-
private function createFromFunction(CallableTypeNode $type): SymbolReference
71+
private function createFromFunction(CallableTypeNode $type): ElementReference
7272
{
7373
if ($type->type !== null || $type->parameters->items !== []) {
74-
return new TypeSymbolReference($type);
74+
return new TypeElementReference($type);
7575
}
7676

7777
return new FunctionReference($type->name);
7878
}
7979

80-
private function createFromNamedType(NamedTypeNode $type, Stream $stream): SymbolReference
80+
private function createFromNamedType(NamedTypeNode $type, Stream $stream): ElementReference
8181
{
8282
if (\str_starts_with($stream->value, '::')) {
8383
if ($type->arguments === null && $type->fields === null) {
@@ -87,7 +87,7 @@ private function createFromNamedType(NamedTypeNode $type, Stream $stream): Symbo
8787
$variable = $stream->apply(new OptionalVariableNameReader());
8888

8989
if ($variable !== null) {
90-
return new ClassPropertySymbolReference(
90+
return new ClassPropertyElementReference(
9191
class: $type->name,
9292
property: $variable,
9393
);
@@ -100,6 +100,6 @@ class: $type->name,
100100
));
101101
}
102102

103-
return new TypeSymbolReference($type);
103+
return new TypeElementReference($type);
104104
}
105105
}

0 commit comments

Comments
 (0)