Shift with red gradient lettering
Loading navigation...

Declare strict types

PHP

Add the strict_types declaration to the PHP files autoloaded within your composer.json or under one of the specified additional paths.

Before

<?php
 
// ...

After

<?php
 
declare(strict_types=1);
 
// ...

← Back to the Workbench Tasks