Skip to content
This repository was archived by the owner on Jul 26, 2021. It is now read-only.

Commit a853a0e

Browse files
Support NAME_FULLY_QUALIFIED, NAME_QUALIFIED, and NAME_RELATIVE tokens
1 parent c0aeb4b commit a853a0e

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to `sebastianbergmann/php-token-stream` are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5+
## [4.0.4] - 2020-08-04
6+
7+
### Added
8+
9+
* Support for `NAME_FULLY_QUALIFIED`, `NAME_QUALIFIED`, and `NAME_RELATIVE` tokens
10+
511
## [4.0.3] - 2020-06-27
612

713
### Added
@@ -71,6 +77,7 @@ All notable changes to `sebastianbergmann/php-token-stream` are documented in th
7177

7278
## [2.0.0] - 2017-08-03
7379

80+
[4.0.4]: https://github.com/sebastianbergmann/php-token-stream/compare/4.0.3...4.0.4
7481
[4.0.3]: https://github.com/sebastianbergmann/php-token-stream/compare/4.0.2...4.0.3
7582
[4.0.2]: https://github.com/sebastianbergmann/php-token-stream/compare/4.0.1...4.0.2
7683
[4.0.1]: https://github.com/sebastianbergmann/php-token-stream/compare/4.0.0...4.0.1

src/NameFullyQualified.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of phpunit/php-token-stream.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
10+
class PHP_Token_NAME_FULLY_QUALIFIED extends PHP_Token
11+
{
12+
}

src/NameQualified.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of phpunit/php-token-stream.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
10+
class PHP_Token_NAME_QUALIFIED extends PHP_Token
11+
{
12+
}

src/NameRelative.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php declare(strict_types=1);
2+
/*
3+
* This file is part of phpunit/php-token-stream.
4+
*
5+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*/
10+
class PHP_Token_NAME_RELATIVE extends PHP_Token
11+
{
12+
}

0 commit comments

Comments
 (0)