====================== Rule ``phpdoc_scalar`` ====================== Scalar types should always be written in the same form. ``int`` not ``integer``, ``bool`` not ``boolean``, ``float`` not ``real`` or ``double``. Configuration ------------- ``types`` ~~~~~~~~~ A map of types to fix. Allowed values: a subset of ``['boolean', 'callback', 'double', 'integer', 'real', 'str']`` Default value: ``['boolean', 'double', 'integer', 'real', 'str']`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New @@ -1,12 +1,12 @@ ['boolean']]``. .. code-block:: diff --- Original +++ New @@ -1,5 +1,5 @@