Skip to content

Commit

Permalink
add change
Browse files Browse the repository at this point in the history
  • Loading branch information
ArrayIterator committed Oct 22, 2023
1 parent f5d9cd9 commit 14c6639
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ final class Core extends AbstractModule
/**
* @var class-string<CoreSubmoduleAbstract>
*/
const MODULES = [
final const MODULES = [
Announcement::class,
Api::class,
Assets::class,
Expand All @@ -101,7 +101,7 @@ final class Core extends AbstractModule
Translator::class,
];

const ENTITY_CHECKING = [
final const ENTITY_CHECKING = [
'required' => [
Entities\Option::class,
Entities\Post::class,
Expand Down
6 changes: 3 additions & 3 deletions SubModules/Assets/Assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private function contentFooterEvent($args)
return $args;
}

const CSS = [
final const CSS = [
// https://grapesjs.com/
"grapesjs" => [
'url' => 'https://cdnjs.cloudflare.com/ajax/libs/grapesjs/0.12.17/css/grapes.min.css',
Expand Down Expand Up @@ -197,7 +197,7 @@ private function contentFooterEvent($args)
],
];

const JS = [
final const JS = [
// http://jquery.com/
'jquery' => [
'url' => 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js',
Expand Down Expand Up @@ -236,7 +236,7 @@ private function contentFooterEvent($args)
],
];

const PACKAGE = [
final const PACKAGE = [
'grapesjs' => [
'css' => [
'grapesjs' => []
Expand Down

0 comments on commit 14c6639

Please sign in to comment.