http://php.net/manual/en/migration71.new-features.php

от вопрос уже есть ответ здесь:

Предопределенные типы переменных параметров 4 ответа

Я видел этот код вhttps://github.com/symfony/symfony/blob/master/src/Symfony/Component/Console/Output/Output.php Строка № 40 они используют? Int.

public function __construct(?int $verbosity = self::VERBOSITY_NORMAL, bool $decorated = false, OutputFormatterInterface $formatter = null)
    {
        $this->verbosity = null === $verbosity ? self::VERBOSITY_NORMAL : $verbosity;
        $this->formatter = $formatter ?: new OutputFormatter();
        $this->formatter->setDecorated($decorated);
    }

Ответы на вопрос(1)

Ваш ответ на вопрос