Skip to content
Open
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
11 changes: 9 additions & 2 deletions src/Prophecy/Doubler/Generator/Node/ArgumentTypeNode.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<?php

namespace Prophecy\Doubler\Generator\Node;
/*
* This file is part of the Prophecy.
* (c) Konstantin Kudryashov <[email protected]>
* Marcello Duarte <[email protected]>
*
* 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 {}
9 changes: 9 additions & 0 deletions src/Prophecy/Doubler/Generator/Node/Type/BuiltinType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Prophecy.
* (c) Konstantin Kudryashov <[email protected]>
* Marcello Duarte <[email protected]>
*
* 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
Expand Down
9 changes: 9 additions & 0 deletions src/Prophecy/Doubler/Generator/Node/Type/IntersectionType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Prophecy.
* (c) Konstantin Kudryashov <[email protected]>
* Marcello Duarte <[email protected]>
*
* 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;
Expand Down
9 changes: 9 additions & 0 deletions src/Prophecy/Doubler/Generator/Node/Type/ObjectType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Prophecy.
* (c) Konstantin Kudryashov <[email protected]>
* Marcello Duarte <[email protected]>
*
* 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
Expand Down
9 changes: 9 additions & 0 deletions src/Prophecy/Doubler/Generator/Node/Type/SimpleType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Prophecy.
* (c) Konstantin Kudryashov <[email protected]>
* Marcello Duarte <[email protected]>
*
* 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
Expand Down
9 changes: 9 additions & 0 deletions src/Prophecy/Doubler/Generator/Node/Type/TypeInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Prophecy.
* (c) Konstantin Kudryashov <[email protected]>
* Marcello Duarte <[email protected]>
*
* 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
Expand Down
9 changes: 9 additions & 0 deletions src/Prophecy/Doubler/Generator/Node/Type/UnionType.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?php

/*
* This file is part of the Prophecy.
* (c) Konstantin Kudryashov <[email protected]>
* Marcello Duarte <[email protected]>
*
* 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;
Expand Down