Page MenuHomePhabricator

bootstrap.php
No OneTemporary

bootstrap.php

<?php
date_default_timezone_set('UTC');
$try = array(
__DIR__ . '/../vendor/autoload.php',
__DIR__ . '/../../../autoload.php',
);
foreach($try as $path) {
if (file_exists($path)) {
$autoLoader = include $path;
break;
}
}
$autoLoader->addPsr4('Sabre\\VObject\\',__DIR__ . '/VObject');
if (!defined('SABRE_TEMPDIR')) {
define('SABRE_TEMPDIR', __DIR__ . '/temp/');
}
if (!file_exists(SABRE_TEMPDIR)) {
mkdir(SABRE_TEMPDIR);
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Dec 23, 6:15 AM (14 h, 36 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
915488
Default Alt Text
bootstrap.php (465 B)

Event Timeline