Skip to content

Instantly share code, notes, and snippets.

@nelson6e65
Last active November 4, 2022 20:24
Show Gist options
  • Save nelson6e65/2a9f47be03aa4636c133b4066d225ab5 to your computer and use it in GitHub Desktop.
Save nelson6e65/2a9f47be03aa4636c133b4066d225ab5 to your computer and use it in GitHub Desktop.
PHPStan examples

PHPStan examples

Types

Using string-class<T> generic typehint with static as T

You can use static in generic to refer to the current class. This is useful in trait implementations:

/**
 * @template T
 */
class Factory {
    /**
     * @var class-string<T>
     */
    public $className;
    /**
     * @return T
     */
    public function createInstance()
    {
        // ...
    }
}

trait HasFactory {
    // Here you are using `static` to be `Person`, `Animal` or any class that use this trait
    /**
     * @return Factory<static>
     */
    public static factory(): Factory
    {
        // . . .
    }
}

class Person {
    use HasFactory;
    public $lastname;
}

class Animal {
    use HasFactory;
    public ?Person $owner
}

//...

$person = Person::factory()->createInstance();
$animal = Animal::factory()->createInstance();

echo $person->lastName; // No type error
$animal->owner = $person; // No type error

Complementing documentation at https://phpstan.org/writing-php-code/phpdoc-types#class-string

@nelson6e65
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment