Issues (446)

src/config.php (8 issues)

1
<?php
2
/**
0 ignored issues
show
Missing short description in doc comment
Loading history...
3
 * @copyright Copyright (c) PutYourLightsOn
0 ignored issues
show
@copyright tag must contain a year and the name of the copyright holder
Loading history...
4
 */
0 ignored issues
show
PHP version not specified
Loading history...
Missing @category tag in file comment
Loading history...
Missing @package tag in file comment
Loading history...
Missing @author tag in file comment
Loading history...
Missing @license tag in file comment
Loading history...
Missing @link tag in file comment
Loading history...
5
6
/**
7
 * Recipe config.php
8
 *
9
 * This file exists only as a template for the Recipe settings.
10
 * It does nothing on its own.
11
 *
12
 * Don't edit this file, instead copy it to 'craft/config' as 'recipe.php'
13
 * and make your changes there to override default settings.
14
 *
15
 * Once copied to 'craft/config', this file will be multi-environment aware as
16
 * well, so you can have different settings groups for each environment, just as
17
 * you do for 'general.php'
18
 */
19
20
return [
21
    '*' => [
22
        // An application ID for the Edamam Nutrition Analysis API (https://developer.edamam.com/edamam-nutrition-api).
23
        //'apiApplicationId' => '1a2b3c4e',
24
25
        // An application key for the Edamam Nutrition Analysis API (https://developer.edamam.com/edamam-nutrition-api).
26
        //'apiApplicationId' => '1a2b3c4e5f6g7h8i9j0k',
27
    ],
28
];
29