1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 02:07:37 +01:00
psalm/src/Psalm/Internal/MethodIdentifier.php
RJ Garcia 2de3e27f10
Initial inferred Closure Returns (#2945)
- Added detection for when we can infer
  closure types from parent fn return types
- Implemented functionality for infering types of
  returned closures
- Added ability to infer type of return from typed
  closures
- Added a new getFunctionLikeStorage method in
  Codebase to support easily getting a function
  despite being a method, closure, or function
- Added some utilities to the MethodIdentifier
  to facilitate creating MethodIdentifier's from
  string method references

Closes #2896

Signed-off-by: RJ Garcia <rj@bighead.net>
2020-03-14 14:51:43 -04:00

52 lines
1.5 KiB
PHP

<?php
namespace Psalm\Internal;
class MethodIdentifier
{
public $fq_class_name;
public $method_name;
/**
* @param string $fq_class_name
* @param lowercase-string $method_name
*/
public function __construct(string $fq_class_name, string $method_name)
{
$this->fq_class_name = $fq_class_name;
$this->method_name = $method_name;
}
/**
* Takes any valid reference to a method id and converts
* it into a MethodIdentifier
* @param string|MethodIdentifier $method_id
*/
public static function wrap($method_id): self
{
return \is_string($method_id) ? static::fromMethodIdReference($method_id) : $method_id;
}
public static function isValidMethodIdReference(string $method_id): bool
{
return \strpos($method_id, '::') !== false;
}
public static function fromMethodIdReference(string $method_id): self
{
if (!static::isValidMethodIdReference($method_id)) {
throw new \InvalidArgumentException('Invalid method id reference provided: ' . $method_id);
}
// remove trailing backslash if it exists
$method_id = \preg_replace('/^\\\\/', '', $method_id);
$method_id_parts = \explode('::', $method_id);
return new static($method_id_parts[0], \strtolower($method_id_parts[1]));
}
/** @return string */
public function __toString()
{
return $this->fq_class_name . '::' . $this->method_name;
}
}