We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8f25e commit 479ab69Copy full SHA for 479ab69
1 file changed
classes/Visualizer/Gutenberg/Block.php
@@ -64,7 +64,7 @@ private function __construct() {
64
}
65
66
/**
67
- * Enqueue front end and editor JavaScript and CSS
+ * Enqueue Gutenberg block assets.
68
*/
69
public function enqueue_gutenberg_scripts() {
70
global $pagenow;
@@ -73,7 +73,7 @@ public function enqueue_gutenberg_scripts() {
73
$stylePath = VISUALIZER_ABSURL . 'classes/Visualizer/Gutenberg/build/style-index.css';
74
$asset_path = VISUALIZER_ABSPATH . '/classes/Visualizer/Gutenberg/build/index.asset.php';
75
if ( file_exists( $asset_path ) ) {
76
- /** @phpstan-ignore-next-line */
+ // @phpstan-ignore-next-line
77
$asset = require $asset_path;
78
} else {
79
$asset = array(
0 commit comments