1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-04 07:37:27 +02:00
1
Casting
LogMANOriginal edited this page 2018-11-05 13:32:12 +01:00

Do not add spaces when casting

The casting type should be put into parenthesis without spaces.

Example

Bad

$text = ( string )$number;

Good

$text = (string)$number;

Reference: Squiz.WhiteSpace.CastSpacing