StackItemType.php

Same filename in other branches
  1. 11.x core/lib/Drupal/Core/Database/Transaction/StackItemType.php

Namespace

Drupal\Core\Database\Transaction

File

core/lib/Drupal/Core/Database/Transaction/StackItemType.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Core\Database\Transaction;


/**
 * Enumeration of the types of items in the Drupal transaction stack.
 */
enum StackItemType
{
    case Root;
    case Savepoint;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.