A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://phpstan.org/writing-php-code/phpdoc-types below:

PHPDoc Types | PHPStan

Menu PHPDoc Types

A PHPDoc type is what’s written in place of [Type] in annotations like @var [Type] or @param [Type] $foo. Learn more about PHPDoc basics »

Would you like to use advanced PHPDoc types in 3rd party code you have in /vendor? You can! Check out Stub Files »

Basic types # Mixed #

mixed type can be used if we don’t want to define a more specific type. PHPStan doesn’t check anything on the mixed type - any property or method can be called on it and it can be passed to any type in a function/method call.

PHPStan has a concept of implicit and explicit mixed. Missing typehint is implicit mixed - no type was specified as a parameter type or a return type. Explicit mixed is written in the PHPDoc. PHPStan’s rule level 6 isn’t satisfied with implicit mixed, but an explicit one is sufficient.

Rule level 9 is stricter about the mixed type. The only allowed operation you can do with it is to pass it to another mixed.

Classes and interfaces #

A fully-qualified name (FQN) like \Foo\Bar\Baz, or a relative name like Baz resolved based on the current namespace and use statements can be used.

Trait names cannot be used in PHPDocs, as they don’t work as native PHP typehints either.

Integer ranges # General arrays # Lists #

Lists are arrays with sequential integer keys starting at 0.

Key and value types of arrays and iterables #
class Foo {
   public const WHEELER = [
      'car' => 4,
      'bike' => 2,
   ];
}


function repair(string $type, int $wheels): void
{
    
    
}

Additionally value-of<BackedEnum> is supported:

enum Suit: string
{
    case Hearts = 'H';
    case Spades = 'S';
}


function foo(array $count): void
{
    
}
Iterables #

These notations specify the iterable key and value types in a foreach statement.

These iterable rules are applied only when the Collection type isn’t generic. When it’s generic, generics rules for class-level type variables are applied.

If PHPStan encounters Collection|Foo[], two possible paths are taken:

  1. Collection implements Traversable so Collection|Foo[] is interpreted as a Collection object that iterates over Foo. The array part isn’t applied.
  2. Collection does not implement Traversable so Collection|Foo[] is interpreted as a Collection object or an array of Foo objects.

If Collection|Foo[] means “Collection or array” in your case even if Collection implements Traversable, you need to disambiguate the type by using Collection|array<Foo> instead.

Union types #

Written as Type1|Type2. Read more about union types here »

Intersection types #

Written as Type1&Type2. Read more about intersection types here »

Parentheses #

Parentheses can be used to disambiguate types: (Type1&Type2)|Type3

static and $this #

To denote that a method returns the same type it’s called on, use @return static or @return $this.

This is useful if we want to tell that a method from a parent class will return an object of the child class when the parent class is extended (see example).

A narrower @return $this instead of @return static can also be used, and PHPStan will check if you’re really returning the same object instance and not just an object of the child class.

Generics #

Generics », Generics By Examples »

Conditional return types #

A simpler alternative to generics if you just want to infer the return type based on if-else logic.


function fillArray(int $size): array
{
	...
}

It can be combined with generics as well in both the condition and the if-else types:


public function fetch(int|array $id)
{
	...
}
Utility types for generics #

template-type can be used to get @template type from a passed object argument. Related discussion here.

new can be used to create an object type from a class-string type.

class-string #

class-string type can be used wherever a valid class name string is expected. Generic variant class-string<T> also works, or you can use class-string<Foo> to only accept valid class names that are subtypes of Foo.


function foo(string $className): void { ... }

Both literal strings with valid class names ('stdClass') and class constants (\stdClass::class) are accepted as class-string arguments.

If you have a general string and want to pass it as a class-string argument, you need to make sure the string contains a valid class name:

function bar(string $name): void
{
    if (class_exists($name)) { 
        
        foo($name);
    }
}
Other advanced string types #

callable-string is a string that PHP considers a valid callable.

numeric-string is a string that would pass an is_numeric() check.

non-empty-string is any string except ''. It does not mean “empty” in the weird sense used by empty().

non-falsy-string (also known as truthy-string) is any string that is true after casting to boolean.

Security-focused literal-string is inspired by the is_literal() RFC. In short, it means a string that is either written by a developer or composed only of developer-written strings.

lowercase-string accepts strings where strtolower($string) === $string is true.

Global type aliases #

Type aliases (also known as typedef) are a popular feature in other languages like TypeScript or C++. Defining type aliases will allow you to reference complex types in your PHPDocs by their alias.

You can define global type aliases in the configuration file:

parameters:
	typeAliases:
		Name: 'string'
		NameResolver: 'callable(): string'
		NameOrResolver: 'Name|NameResolver'

Then you can use these aliases in your codebase:


function foo($arg)
{
	
}
Local type aliases #

You can also define and use local aliases in PHPDocs using the @phpstan-type annotation. These are scoped to the class that defines them:


class User
{
	
	private $address; 
}

To use a local type alias elsewhere, you can import it using the @phpstan-import-type annotation in another class’ PHPDocs:


class Order
{
	
	private $deliveryAddress; 
}

You can optionally change the name of the imported alias:


class Order
{
	
	private $deliveryAddress; 
}
Array shapes #

This feature enables usage of strong types in codebases where arrays of various specific shapes are passed around functions and methods. PHPStan checks that the values in specified keys have the correct types:

This is different from general arrays that mandate that all the keys and values must be of a specific homogeneous type. Array shapes allow each key and value to be different.

Object shapes #

This feature is inspired by array shapes but represents objects with public properties with specified types:

Object shape properties are read-only. You can intersect the object shape with another class to make them writable:

Literals and constants #

PHPStan allows specifying scalar values as types in PHPDocs:

Constant enumerations are also supported:

Global constants #

Constants are supported as long as they don’t contain lowercase letters and a class with the same name doesn’t exist:

Callables #

The callable typehint has been in PHP for a long time. But it doesn’t allow enforcing specific callback signatures. However, PHPStan allows to enforce specific signatures in PHPDocs:

Parameter types and return type are required. Use mixed if you don’t want to use a more specific type.

Aside from describing callable signatures PHPStan also supports declaring whether the callable is executed immediately or saved for later when passed into a function or a method.

PHPStan also supports changing the meaning of $this inside a closure with @param-closure-this PHPDoc tag.

Bottom type #

All of these names are equivalent:

Marking a function or a method as @return never tells PHPStan the function always throws an exception, or contains a way to end the script execution, like die() or exit(). This is useful when solving undefined variables.

Integer masks #

Some functions accept a bitmask composed by |-ing different integer values. 0 is always part of the possible values. Some examples:

Offset access #

You can access a value type of a specific array key:


class HelloWorld
{

	
	public function getBar()
	{
		
	}
}

This feature shines when combined with generics. It allows to represent key-value pairs backed by an array:


trait AttributeTrait
{
	
	private array $attributes;

	
	public function setAttribute(string $key, $val): void
	{
		
	}

	
	public function getAttribute(string $key)
	{
		return $this->attributes[$key] ?? null;
	}
}

class Foo {

	
	use AttributeTrait;

}

When we try to use class Foo in practice, PHPStan reports expected type errors:

$f = new Foo;
$f->setAttribute('bar', 5); 
$f->setAttribute('foo', 3); 
$f->getAttribute('unknown'); 

Edit this page on GitHub


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4