Skip to content

Commit d51b419

Browse files
authored
Merge pull request #42 from AJenbo/phpstan
Update PHPStan intergration
2 parents 0f813ab + 7d1e7e3 commit d51b419

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

phpstan.neon

-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@ parameters:
1313
- ./upload/system/storage/cache/
1414
tmpDir: .cache
1515
ignoreErrors:
16-
- '#Class Event constructor invoked with 1 parameter, 4-5 required\.#'
1716
- '#Constant [A-Z_]+ not found\.#'
18-
- '#Class Session constructor invoked with 0 parameters, 1-2 required\.#'

tools/phpstan/RegistryPropertyReflectionExtension.php

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,22 @@
33
namespace Tools\PHPStan;
44

55
use Registry;
6-
use PHPStan\Broker\Broker;
76
use PHPStan\Reflection\ClassReflection;
87
use PHPStan\Reflection\PropertiesClassReflectionExtension;
98
use PHPStan\Reflection\PropertyReflection;
9+
use PHPStan\Reflection\ReflectionProvider;
1010
use PHPStan\Type\Generic\GenericObjectType;
1111
use PHPStan\Type\NullType;
1212
use PHPStan\Type\ObjectType;
1313
use PHPStan\Type\TypeCombinator;
1414

1515
class RegistryPropertyReflectionExtension implements PropertiesClassReflectionExtension {
16+
private ReflectionProvider $reflectionProvider;
17+
18+
public function __construct(ReflectionProvider $reflectionProvider) {
19+
$this->reflectionProvider = $reflectionProvider;
20+
}
21+
1622
public function hasProperty(ClassReflection $classReflection, string $propertyName): bool {
1723
if (!$classReflection->is(Registry::class)) {
1824
return false;
@@ -25,10 +31,9 @@ public function getProperty(ClassReflection $classReflection, string $propertyNa
2531
preg_match('/^(model_.+)$/', $propertyName, $matches);
2632
$className = $this->convertSnakeToStudly($matches[1]);
2733

28-
$broker = Broker::getInstance();
2934

3035
$type = new NullType();
31-
if ($broker->hasClass($className)) {
36+
if ($this->reflectionProvider->hasClass($className)) {
3237
$found = new ObjectType($className);
3338
$type = new GenericObjectType('\Proxy', [$found]);
3439
$type = TypeCombinator::addNull($type);

upload/admin/index.php

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
// Configuration
66
if (is_file('config.php')) {
7+
/** @phpstan-ignore requireOnce.fileNotFound */
78
require_once('config.php');
89
}
910

upload/index.php

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
// Configuration
66
if (is_file('config.php')) {
7+
/** @phpstan-ignore requireOnce.fileNotFound */
78
require_once('config.php');
89
}
910

upload/system/framework.php

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
});
5959

6060
// Event
61+
/** @phpstan-ignore arguments.count */
6162
$event = new \Event($registry);
6263
$registry->set('event', $event);
6364

upload/system/framework_db.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
});
5959

6060
// Event
61+
/** @phpstan-ignore arguments.count */
6162
$event = new \Event($registry);
6263
$registry->set('event', $event);
6364

@@ -97,7 +98,7 @@
9798
}
9899

99100
// Session
100-
$session = new Session($config->get('session_engine'), $registry);
101+
$session = new Session($config->get('session_engine'));
101102
$registry->set('session', $session);
102103

103104
if ($config->get('session_autostart')) {

0 commit comments

Comments
 (0)