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
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Expr/ArrayItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
require __DIR__ . '/../ArrayItem.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\ArrayItem instead.
*/
class ArrayItem extends \PhpParser\Node\ArrayItem {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Expr/ClosureUse.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
require __DIR__ . '/../ClosureUse.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\ClosureUse instead.
*/
class ClosureUse extends \PhpParser\Node\ClosureUse {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Scalar/DNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
require __DIR__ . '/Float_.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\Scalar\Float_ instead.
*/
class DNumber extends Float_ {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Scalar/Encapsed.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
require __DIR__ . '/InterpolatedString.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\Scalar\InterpolatedString instead.
*/
class Encapsed extends InterpolatedString {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Scalar/EncapsedStringPart.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
require __DIR__ . '/../InterpolatedStringPart.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\InterpolatedStringPart instead.
*/
class EncapsedStringPart extends InterpolatedStringPart {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Scalar/LNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
require __DIR__ . '/Int_.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\Scalar\Int_ instead.
*/
class LNumber extends Int_ {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Stmt/DeclareDeclare.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
require __DIR__ . '/../DeclareItem.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\DeclareItem instead.
*/
class DeclareDeclare extends DeclareItem {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Stmt/PropertyProperty.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
require __DIR__ . '/../PropertyItem.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\PropertyItem instead.
*/
class PropertyProperty extends PropertyItem {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Stmt/StaticVar.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
require __DIR__ . '/../StaticVar.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\StaticVar instead.
*/
class StaticVar extends \PhpParser\Node\StaticVar {
}
}
6 changes: 5 additions & 1 deletion lib/PhpParser/Node/Stmt/UseUse.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
require __DIR__ . '/../UseItem.php';

if (false) {
// For classmap-authoritative support.
/**
* For classmap-authoritative support.
*
* @deprecated use \PhpParser\Node\UseItem instead.
*/
class UseUse extends UseItem {
}
}
Loading