Issues (25)

application/configs/testing/module.media.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Configuration of Media module
4
 *
5
 * @author   Anton Shevchuk
6
 * @created  19.09.2014 12:47
7
 * @link     https://github.com/bluzphp/skeleton/wiki/Module-Media
8
 * @return   array
9
 */
10
return [
11
    'path' => PATH_ROOT . '/tests/files/test.jpg',
12
    'upload_path' => PATH_PUBLIC . '/tests/uploads'
0 ignored issues
show
The constant PATH_PUBLIC was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
13
];
14