for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Cache Flag plugin for Craft CMS 3.x
*
* Flag and clear template caches.
* @link https://vaersaagod.no
* @copyright Copyright (c) 2018 Mats Mikkel Rummelhoff
*/
namespace mmikkel\cacheflag\records;
use craft\db\ActiveRecord;
* @property int $id
* @author Mats Mikkel Rummelhoff
* @package CacheFlag
* @since 1.0.0
class Flags extends ActiveRecord
{
/** @var string|null */
public ?string $flags;
/** @var int|null */
public ?int $sectionId;
public ?int $categoryGroupId;
public ?int $tagGroupId;
public ?int $userGroupId;
public ?int $volumeId;
public ?int $globalSetId;
public ?string $elementType;
// Public Static Methods
// =========================================================================
* @inheritdoc
public static function tableName(): string
return '{{%cacheflag_flags}}';
}