15 lines
194 B
PHP
15 lines
194 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace common\models\interfaces;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
interface AttachmentLinkableApplicationEntity extends AttachmentLinkableEntity
|
||
|
{
|
||
|
public static function getApplicationIdColumn(): string;
|
||
|
}
|