Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 479 Bytes

SlevomatCodingStandard.PHP.TypeCast.md

File metadata and controls

11 lines (6 loc) · 479 Bytes

Pattern: Inconsistent type cast

Issue: -

Description

Enforces using shorthand cast operators, forbids use of unset and binary cast operators: (bool) instead of (boolean), (int) instead of (integer), (float) instead of (double) or (real). (binary) and (unset) are forbidden.

Further Reading