Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit be19774

Browse files
committed
Stub namespacedName property
1 parent b4fe870 commit be19774

12 files changed

+54
-187
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"require": {
99
"php": "^7.1 || ^8.0",
10-
"phpstan/phpstan": "^1.0"
10+
"phpstan/phpstan": "^1.3"
1111
},
1212
"require-dev": {
1313
"php-parallel-lint/php-parallel-lint": "^1.2",
@@ -23,7 +23,7 @@
2323
},
2424
"extra": {
2525
"branch-alias": {
26-
"dev-master": "1.0-dev"
26+
"dev-master": "1.1-dev"
2727
},
2828
"phpstan": {
2929
"includes": [

extension.neon

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
services:
2-
-
3-
class: PHPStan\Reflection\PHPParser\PhpParserNameClassReflectionExtension
4-
tags:
5-
- phpstan.broker.propertiesClassReflectionExtension
1+
parameters:
2+
stubFiles:
3+
- stubs/Const_.stub
4+
- stubs/Function_.stub
5+
- stubs/ClassLike.stub
6+
- stubs/Name.stub

phpstan.neon

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
includes:
2+
- extension.neon
23
- vendor/phpstan/phpstan-phpunit/extension.neon
34
- vendor/phpstan/phpstan-phpunit/rules.neon
45
- vendor/phpstan/phpstan-strict-rules/rules.neon
56
- vendor/phpstan/phpstan/conf/bleedingEdge.neon
6-
7-
parameters:
8-
ignoreErrors:
9-
- '#Dynamic call to static method PHPUnit\\Framework#'

src/.gitkeep

Whitespace-only changes.

src/Reflection/PHPParser/NamespacedNameProperty.php

-91
This file was deleted.

src/Reflection/PHPParser/PhpParserNameClassReflectionExtension.php

-25
This file was deleted.

stubs/ClassLike.stub

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace PhpParser\Node\Stmt;
4+
5+
use PhpParser\Node;
6+
7+
abstract class ClassLike
8+
{
9+
10+
/** @var Node\Name|null Namespaced name (if using NameResolver) */
11+
public $namespacedName;
12+
13+
}

stubs/Const_.stub

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace PhpParser\Node;
4+
5+
class Const_
6+
{
7+
8+
/** @var Name|null Namespaced name (if using NameResolver) */
9+
public $namespacedName;
10+
11+
}

stubs/Function_.stub

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace PhpParser\Node\Stmt;
4+
5+
use PhpParser\Node;
6+
7+
class Function_
8+
{
9+
10+
/** @var Node\Name|null Namespaced name (if using NameResolver) */
11+
public $namespacedName;
12+
13+
}

stubs/Name.stub

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace PhpParser\Node;
4+
5+
class Name
6+
{
7+
8+
}

tests/.gitkeep

Whitespace-only changes.

tests/Reflection/PHPParser/PhpParserNameClassReflectionExtensionTest.php

-60
This file was deleted.

0 commit comments

Comments
 (0)