Failed Conditions
Pull Request — develop (#242)
by
unknown
04:59
created

config.php (3 issues)

1
<?php
2
/**
3
 * Config.
4
 *
5
 * Define configurations for this plugin,
6
 * use it for define your service providers and hooks providers,
7
 * the classes will be loaded in order as defined.
8
 *
9
 * @package App
10
 */
11
12
return [
0 ignored issues
show
Short array syntax is not allowed
Loading history...
13
	'service_providers' => [
0 ignored issues
show
Short array syntax is not allowed
Loading history...
14
		App\Services\CarbonFields\ServiceProvider::class,
15
		App\Services\Meta\ServiceProvider::class,
16
	],
17
	'hook_providers'    => [
0 ignored issues
show
Short array syntax is not allowed
Loading history...
18
		App\Providers\Assets\Admin::class,
19
		App\Providers\Assets\Editor::class,
20
		App\Providers\Assets\Login::class,
21
		App\Providers\Assets\Theme::class,
22
		App\Providers\ExampleCategory\Taxonomy::class,
23
		App\Providers\Example\PostMeta::class,
24
		App\Providers\Example\PostType::class,
25
	],
26
];
27