Issues (16)

config/config.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Copyright (c) 2017
4
 *
5
 * @package   Majima
6
 * @author    David Neustadt <[email protected]>
7
 * @copyright 2017 David Neustadt
8
 * @license   MIT
9
 */
10
11
$container->loadFromExtension('framework', [
12
    'secret' => sha1(BASE_DIR),
0 ignored issues
show
The constant BASE_DIR was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
13
    'session' => [
14
        'save_path' => null
15
    ],
16
    'router' => [
17
        'resource' => __DIR__ . "/routing.php"
18
    ]
19
]);