A bit of BASH

PHOTO EMBED

Tue Apr 06 2021 15:27:19 GMT+0000 (Coordinated Universal Time)

Saved by @SirClickalot #bash

use Drupal\Core\DrupalKernel;
use Symfony\Component\HttpFoundation\Request;

if (PHP_SAPI !== 'cli') {
  return;
}

if (version_compare(PHP_VERSION, '5.4.5') < 0) {
  $version = PHP_VERSION;
  echo <<<EOF

ERROR: This script requires at least PHP version 5.4.5. You invoked it with
       PHP version {$version}.
\n
EOF;
  exit;
content_copyCOPY