8000 [PropertyInfo] Make classes final by GuilhemN · Pull Request #21655 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[PropertyInfo] Make classes final #21655

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[PropertyInfo] Make classes final
  • Loading branch information
GuilhemN committed Feb 17, 2017
commit 59cf99ca5ebb6c0fc577e2f60ac0cddb0c1a7b6e
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* Extracts data using a PHPDoc parser.
*
* @author Kévin Dunglas <dunglas@gmail.com>
*
* @final since version 3.3
*/
class PhpDocExtractor implements PropertyDescriptionExtractorInterface, PropertyTypeExtractorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
* Extracts data using the reflection API.
*
* @author Kévin Dunglas <dunglas@gmail.com>
*
* @final since version 3.3
*/
class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTypeExtractorInterface, PropertyAccessExtractorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* Lists available properties using Symfony Serializer Component metadata.
*
* @author Kévin Dunglas <dunglas@gmail.com>
*
* @final since version 3.3
*/
class SerializerExtractor implements PropertyListExtractorInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
* Adds a PSR-6 cache layer on top of an extractor.
*
* @author Kévin Dunglas <dunglas@gmail.com>
*
* @final since version 3.3
*/
class PropertyInfoCacheExtractor implements PropertyInfoExtractorInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/PropertyInfo/PropertyInfoExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
* Default {@see PropertyInfoExtractorInterface} implementation.
*
* @author Kévin Dunglas <dunglas@gmail.com>
*
* @final since version 3.3
*/
class PropertyInfoExtractor implements PropertyInfoExtractorInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/PropertyInfo/Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
* Type value object (immutable).
*
* @author Kévin Dunglas <dunglas@gmail.com>
*
* @final since version 3.3
*/
class Type
{
Expand Down
0