Page MenuHomePhorge

Base.php
No OneTemporary

Authored By
Unknown
Size
745 B
Referenced Files
None
Subscribers
None

Base.php

<?php
namespace App\Handlers;
abstract class Base
{
/**
* The entitleable class for this handler.
*
* @return string
*/
public static function entitleableClass(): string
{
return '';
}
/**
* Prerequisites for the Entitlement to be applied to the object.
*
* @param \App\Entitlement $entitlement
* @param mixed $object
*
* @return bool
*/
public static function preReq($entitlement, $object): bool
{
return true;
}
/**
* The priority that specifies the order of SKUs in UI.
* Higher number means higher on the list.
*
* @return int
*/
public static function priority(): int
{
return 0;
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 1:50 PM (4 d, 2 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b6/a0/b0b2ae0a5b94eacd253b61656c3e
Default Alt Text
Base.php (745 B)

Event Timeline