Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/squizlabs/php_codesniffer/src/Standards/PSR12/Tests/Keywords/ShortFormTypeKeywordsUnitTest.inc
<?php
$bar = (bool) $foo;
$bar = (boolean) $foo;
$bar = (Bool) $foo;
$bar = (BOOLEAN) $foo;
$bar = (int) $foo;
$bar = (integer) $foo;
$bar = (INT) $foo;

// Test recognition with whitespace within the cast.
$bar = (  bool  ) $foo;
$bar = ( int ) $foo;
$bar = (     boolean      ) $foo;
$bar = (  integer) $foo;