Type hinting: bool or boolean

Author: VijitCoderCreated Jan 25, 2018Updated Mar 9, 2026
LabelsType: enhancement

The sniffer makes a pretty strange requirement. He is always want to see the boolean as a type hint. But, at the same time PHP 7.1 supports only bool as a type hinting. So, to make everyone happy I need to write the hinting in two versions:

php
   /**
     * Some comment here
     *
     * @return boolean
     */
    public function isUserActive(): bool
    {
        return false;
    }

This is weird from the coding viewpoint.

Here is a discussion about the right hinting https://stackoverflow.com/a/44009101/5497749

Source: squizlabs/PHP_CodeSniffer