You are here

swagger_ui_formatter.post_update.php in Swagger UI Field Formatter 8.3

Same filename and directory in other branches
  1. 8.2 swagger_ui_formatter.post_update.php

File

swagger_ui_formatter.post_update.php
View source
<?php

/**
 * @file
 * Post update functions for Swagger UI Field Formatter.
 */
declare (strict_types=1);

/**
 * Rebuild cache due to updated library definitions.
 */
function swagger_ui_formatter_post_update_1() : void {

  // Empty post-update hook.
}

/**
 * Rebuild cache due to changes in the rendering.
 */
function swagger_ui_formatter_post_update_2() : void {

  // Empty post-update hook.
}

/**
 * Rebuild cache due to implementation changes.
 */
function swagger_ui_formatter_post_update_3() : void {

  // Empty post-update hook.
}

Functions

Namesort descending Description
swagger_ui_formatter_post_update_1 Rebuild cache due to updated library definitions.
swagger_ui_formatter_post_update_2 Rebuild cache due to changes in the rendering.
swagger_ui_formatter_post_update_3 Rebuild cache due to implementation changes.