<?php declare(strict_types=1) ; class Test{ function something(bool $test){ var_dump($test); // "Second dump" } } $value = 'test'; var_dump(is_bool($value)); // "First dump" $test = new Test; $test->something($value);
You have javascript disabled. You will not be able to edit any code.