Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
11 / 11
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/*
3 * This file is part of App Project.
4 *
5 * For the full copyright and license information, please view the LICENSE
6 * file that was distributed with this source code.
7 */
8/**
9 * Console config.
10 *
11 * @see App::console()
12 * @see App::run()
13 * @see https://docs.aplus-framework.com/guides/libraries/mvc/index.html#console-service
14 */
15return [
16    'default' => [
17        'directories' => [
18            APLUS_DIR . 'dev-commands/src',
19            APP_DIR . 'Commands',
20        ],
21        'find_in_namespaces' => false,
22        'language_instance' => 'default',
23        'locator_instance' => 'default',
24    ],
25];