strict_include_explicit_weak_2.inc   [plain text]


<?php

declare(strict_types=0);

function takes_int(int $x) {
    echo "Success!";
}

takes_int(1.0); // succeeds in weak mode