From d8453463122e0cfc8a42ec9addc63bd0bba3aae3 Mon Sep 17 00:00:00 2001 From: Maxime Veber Date: Thu, 9 Oct 2025 15:00:13 +0200 Subject: [PATCH] Add missing docblocks --- .../Doubler/Generator/Node/ArgumentTypeNode.php | 11 +++++++++-- .../Doubler/Generator/Node/Type/BuiltinType.php | 9 +++++++++ .../Doubler/Generator/Node/Type/IntersectionType.php | 9 +++++++++ .../Doubler/Generator/Node/Type/ObjectType.php | 9 +++++++++ .../Doubler/Generator/Node/Type/SimpleType.php | 9 +++++++++ .../Doubler/Generator/Node/Type/TypeInterface.php | 9 +++++++++ .../Doubler/Generator/Node/Type/UnionType.php | 9 +++++++++ 7 files changed, 63 insertions(+), 2 deletions(-) diff --git a/src/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php b/src/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php index 79356ba9..73431bac 100644 --- a/src/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php +++ b/src/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php @@ -1,7 +1,14 @@ + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ -use Prophecy\Exception\Doubler\DoubleException; +namespace Prophecy\Doubler\Generator\Node; class ArgumentTypeNode extends TypeNodeAbstract {} diff --git a/src/Prophecy/Doubler/Generator/Node/Type/BuiltinType.php b/src/Prophecy/Doubler/Generator/Node/Type/BuiltinType.php index 621dd6fe..6e98a59a 100644 --- a/src/Prophecy/Doubler/Generator/Node/Type/BuiltinType.php +++ b/src/Prophecy/Doubler/Generator/Node/Type/BuiltinType.php @@ -1,5 +1,14 @@ + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Prophecy\Doubler\Generator\Node\Type; final class BuiltinType implements SimpleType diff --git a/src/Prophecy/Doubler/Generator/Node/Type/IntersectionType.php b/src/Prophecy/Doubler/Generator/Node/Type/IntersectionType.php index 8027a3bd..b0d3587a 100644 --- a/src/Prophecy/Doubler/Generator/Node/Type/IntersectionType.php +++ b/src/Prophecy/Doubler/Generator/Node/Type/IntersectionType.php @@ -1,5 +1,14 @@ + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Prophecy\Doubler\Generator\Node\Type; use Prophecy\Exception\Doubler\DoubleException; diff --git a/src/Prophecy/Doubler/Generator/Node/Type/ObjectType.php b/src/Prophecy/Doubler/Generator/Node/Type/ObjectType.php index 7c4b0221..7a482ef7 100644 --- a/src/Prophecy/Doubler/Generator/Node/Type/ObjectType.php +++ b/src/Prophecy/Doubler/Generator/Node/Type/ObjectType.php @@ -1,5 +1,14 @@ + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Prophecy\Doubler\Generator\Node\Type; final class ObjectType implements SimpleType diff --git a/src/Prophecy/Doubler/Generator/Node/Type/SimpleType.php b/src/Prophecy/Doubler/Generator/Node/Type/SimpleType.php index 2671970d..63a62bf8 100644 --- a/src/Prophecy/Doubler/Generator/Node/Type/SimpleType.php +++ b/src/Prophecy/Doubler/Generator/Node/Type/SimpleType.php @@ -1,5 +1,14 @@ + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Prophecy\Doubler\Generator\Node\Type; interface SimpleType extends TypeInterface diff --git a/src/Prophecy/Doubler/Generator/Node/Type/TypeInterface.php b/src/Prophecy/Doubler/Generator/Node/Type/TypeInterface.php index 79cdcf48..121e8511 100644 --- a/src/Prophecy/Doubler/Generator/Node/Type/TypeInterface.php +++ b/src/Prophecy/Doubler/Generator/Node/Type/TypeInterface.php @@ -1,5 +1,14 @@ + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Prophecy\Doubler\Generator\Node\Type; interface TypeInterface extends \Stringable diff --git a/src/Prophecy/Doubler/Generator/Node/Type/UnionType.php b/src/Prophecy/Doubler/Generator/Node/Type/UnionType.php index ab77e074..84f45603 100644 --- a/src/Prophecy/Doubler/Generator/Node/Type/UnionType.php +++ b/src/Prophecy/Doubler/Generator/Node/Type/UnionType.php @@ -1,5 +1,14 @@ + * Marcello Duarte + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + namespace Prophecy\Doubler\Generator\Node\Type; use Prophecy\Exception\Doubler\DoubleException;