1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-05 21:19:03 +01:00
psalm/src/Psalm/Checker/InterfaceChecker.php

67 lines
2.0 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Checker;
use PhpParser;
use Psalm\StatementsSource;
use Psalm\Context;
class InterfaceChecker extends ClassLikeChecker
{
protected $parent_interfaces = [];
protected static $existing_interfaces = [];
protected static $existing_interfaces_ci = [];
2016-08-08 20:36:18 +02:00
public function __construct(PhpParser\Node\Stmt\Interface_ $interface, StatementsSource $source, $interface_name)
2016-08-08 20:36:18 +02:00
{
parent::__construct($interface, $source, $interface_name);
self::$existing_interfaces[$interface_name] = true;
self::$existing_interfaces_ci[strtolower($interface_name)] = true;
foreach ($interface->extends as $extended_interface) {
$this->parent_interfaces[] = self::getAbsoluteClassFromName($extended_interface, $this->namespace, $this->aliased_classes);
}
}
public static function interfaceExists($interface)
{
if (isset(self::$existing_interfaces_ci[strtolower($interface)])) {
return self::$existing_interfaces_ci[strtolower($interface)];
}
if (in_array($interface, self::$SPECIAL_TYPES)) {
return false;
}
if (interface_exists($interface, true)) {
$reflected_interface = new \ReflectionClass($interface);
self::$existing_interfaces_ci[strtolower($interface)] = true;
self::$existing_interfaces[$reflected_interface->getName()] = true;
return true;
}
2016-08-08 20:36:18 +02:00
self::$existing_interfaces_ci[strtolower($interface)] = false;
self::$existing_interfaces_ci[$interface] = false;
return false;
}
public static function hasCorrectCasing($interface)
{
if (!self::interfaceExists(strtolower($interface))) {
throw new \InvalidArgumentException('Cannot check casing on nonexistent class ' . $interface);
}
return isset(self::$existing_interfaces[$interface]);
}
2016-08-15 17:01:50 +02:00
public static function clearCache()
{
self::$existing_interfaces = [];
self::$existing_interfaces_ci = [];
}
}