11 lines
158 B
PHP
11 lines
158 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Shimmie2;
|
||
|
|
||
|
abstract class ImageViewCounterConfig
|
||
|
{
|
||
|
public const VERSION = 'ext_image_view_counter';
|
||
|
}
|