Skip to content
Snippets Groups Projects

Issue #3266717: Add out of the box support for the core Olivero theme

Open Luke Leber requested to merge issue/inline_all_css-3266717:3266717-add-out-of into 1.0.x
14 files
+ 555
2
Compare changes
  • Side-by-side
  • Inline
Files
14
+ 28
0
<?php
namespace Drupal\inline_all_css\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a Compatibility Shim annotation.
*
* @Annotation
*/
class CompatibilityShim extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The assets that this shim applies to.
*
* @var string[]
*/
public $assets = [];
}
Loading