Skip to content

Commit

Permalink
fix(YSP-559): fix PHP default param deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
dblanken-yale committed Sep 30, 2024
1 parent 489c9d5 commit f3312f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use Drupal\field\Entity\FieldStorageConfig;
*
* @see options_allowed_values()
*/
function ys_themes_allowed_values_function(FieldStorageConfig $definition, ?ContentEntityInterface $entity = NULL, $cacheable) {
function ys_themes_allowed_values_function(FieldStorageConfig $definition, $cacheable, ?ContentEntityInterface $entity = NULL) {
$options = [];
$config = \Drupal::config('ys_themes.component_overrides');

Expand Down

0 comments on commit f3312f3

Please sign in to comment.