You are here

function includeIfExists in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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;
  }
}