Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/Symfony/Component/TypeInfo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ CHANGELOG
7.1
---

* Add the component
* Add the component as experimental
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
/**
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
interface ExceptionInterface extends \Throwable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
/**
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Exception/LogicException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
/**
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
class LogicException extends \LogicException implements ExceptionInterface
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
/**
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
/**
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
class UnsupportedException extends \LogicException implements ExceptionInterface
{
Expand Down
5 changes: 5 additions & 0 deletions src/Symfony/Component/TypeInfo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ TypeInfo Component

The TypeInfo component extracts PHP types information.

**This Component is experimental**.
[Experimental features](https://symfony.com/doc/current/contributing/code/experimental.html)
are not covered by Symfony's
[Backward Compatibility Promise](https://symfony.com/doc/current/contributing/code/bc.html).

Getting Started
---------------

Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
/**
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
abstract class Type implements \Stringable
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/BackedEnumType.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
* @template U of BuiltinType<TypeIdentifier::INT>|BuiltinType<TypeIdentifier::STRING>
*
* @extends EnumType<T>
*
* @experimental
*/
final class BackedEnumType extends EnumType
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/BuiltinType.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @author Baptiste Leduc <[email protected]>
*
* @template T of TypeIdentifier
*
* @experimental
*/
final class BuiltinType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/CollectionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* @author Baptiste Leduc <[email protected]>
*
* @template T of BuiltinType<TypeIdentifier::ARRAY>|BuiltinType<TypeIdentifier::ITERABLE>|ObjectType|GenericType
*
* @experimental
*/
final class CollectionType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/EnumType.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* @template T of class-string<\UnitEnum>
*
* @extends ObjectType<T>
*
* @experimental
*/
class EnumType extends ObjectType
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/GenericType.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
* @author Baptiste Leduc <[email protected]>
*
* @template T of BuiltinType<TypeIdentifier::ARRAY>|BuiltinType<TypeIdentifier::ITERABLE>|ObjectType
*
* @experimental
*/
final class GenericType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/IntersectionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* @author Baptiste Leduc <[email protected]>
*
* @template T of Type
*
* @experimental
*/
final class IntersectionType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/ObjectType.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* @author Baptiste Leduc <[email protected]>
*
* @template T of class-string
*
* @experimental
*/
class ObjectType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/TemplateType.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
*
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
final class TemplateType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/Type/UnionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* @author Baptiste Leduc <[email protected]>
*
* @template T of Type
*
* @experimental
*/
final class UnionType extends Type
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/TypeContext/TypeContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
*
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
final class TypeContext
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
*
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
final class TypeContextFactory
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/TypeFactoryTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
*
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
trait TypeFactoryTrait
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/TypeIdentifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
*
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
enum TypeIdentifier: string
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/TypeInfo/TypeResolver/TypeResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
*
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
final readonly class TypeResolver implements TypeResolverInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
*
* @author Mathias Arlaud <[email protected]>
* @author Baptiste Leduc <[email protected]>
*
* @experimental
*/
interface TypeResolverInterface
{
Expand Down