Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: return type hint spacing #226

Open
wants to merge 1 commit into
base: 2.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Drupal\field\Entity\FieldStorageConfig;
/**
* Implements hook_update_N().
*/
function localgov_subsites_paragraphs_update_10001():void {
function localgov_subsites_paragraphs_update_10001(): void {
$paragraphType = 'localgov_accordion';
$display = 'paragraph.' . $paragraphType . '.default';
$existingFields = [
Expand Down Expand Up @@ -129,7 +129,7 @@ function localgov_subsites_paragraphs_update_10001():void {
/**
* Update the description of the localgov_url field.
*/
function localgov_subsites_paragraphs_update_10002():void {
function localgov_subsites_paragraphs_update_10002(): void {
// Update the description of the localgov_url field to match what we have
// in config.
$field = FieldConfig::loadByName('paragraph', 'localgov_banner_primary', 'localgov_url');
Expand Down
Loading