function includeIfExists in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/composer/installers/src/bootstrap.php \includeIfExists()
1 call to includeIfExists()
- bootstrap.php in vendor/
composer/ installers/ src/ bootstrap.php
File
- vendor/
composer/ installers/ src/ bootstrap.php, line 2
Code
function includeIfExists($file) {
if (file_exists($file)) {
return include $file;
}
}