diff --git a/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php b/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php index 1968cab..8930d1e 100644 --- a/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php +++ b/core/lib/Drupal/Core/Extension/ExtensionNameLengthException.php @@ -10,4 +10,4 @@ /** * Exception thrown when the extension's name length exceeds the allowed maximum. */ -class ExtensionNameLengthException extends \Exception { } \ No newline at end of file +class ExtensionNameLengthException extends \Exception { } diff --git a/core/modules/user/user.install b/core/modules/user/user.install index 95ebb5b..fc649a9 100644 --- a/core/modules/user/user.install +++ b/core/modules/user/user.install @@ -1061,14 +1061,14 @@ function user_update_8017() { */ function user_update_8018() { if (db_field_exists('role_permission', 'module')) { - $spec = array( - 'type' => 'varchar', - 'length' => 50, - 'not null' => TRUE, - 'default' => '', - 'description' => "The module declaring the permission.", - ); - db_change_field('role_permission', 'module', 'module', $spec); + $spec = array( + 'type' => 'varchar', + 'length' => 50, + 'not null' => TRUE, + 'default' => '', + 'description' => 'The module declaring the permission.', + ); + db_change_field('role_permission', 'module', 'module', $spec); } if (db_field_exists('users_data', 'module')) {